-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdinosoft-shopping-center.html
144 lines (139 loc) · 4.11 KB
/
dinosoft-shopping-center.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="DINOSOFT-LOGO.jpg">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shopping Center | Dinosoft
</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #f0f0f0;
}
.container {
width: 90%;
max-width: 800px;
}
.title-with-logo {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.title-with-logo img {
width: 50px; /* Adjust size as needed */
height: 50px; /* Adjust size as needed */
margin-right: 10px;
border-radius: 50%;
}
h2 {
margin: 0;
}
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.grid-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #fff;
border: 1px solid #ddd;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.grid-item img {
width: 50px; /* Adjust size as needed */
height: 50px; /* Adjust size as needed */
margin-bottom: 10px;
border-radius: 50%;
}
</style>
</head>
<body>
<br>
<br>
<br>
<br>
<br>
<br>
<div class="container">
<div class="title-with-logo">
<img src="DINOSOFT-LOGO.jpg" alt="Logo 1" style="width:180px;height:150px;">
<h1 style="font-size: 60px">Dinosoft Shopping Center</h1>
</div>
<div class="grid">
<!-- Row 1 -->
<div class="grid-item">
<img src="amazon-logo-transparent-circle-for-shopping-center.png" alt="Item 1 Logo">
<a href="https://www.Amazon.com">Amazon</a>
</div>
<div class="grid-item">
<img src="apple-logo-transparent-for-shopping-center.png" alt="Item 2 Logo">
<a href="https://www.apple.com">Apple</a>
</div>
<div class="grid-item">
<img src="walmart-logo-transparent-for-shopping-center.png" alt="Item 3 Logo">
<a href="https://www.walmart.com">Walmart</a>
</div>
<!-- Row 2 -->
<div class="grid-item">
<img src="sam's-club-logo-for-dinosoft-shopping-center.jpg" alt="Item 4 Logo">
<a href="https://www.samsclub.com">Sam's Club</a>
</div>
<div class="grid-item">
<img src="meijer-transparent-logo-for-dinosoft-shopping-center.jpg" alt="Item 5 Logo">
<a href="https://www.meijer.com">Meijer</a>
</div>
<div class="grid-item">
<img src="ebay-transparent-logo-for-dinosoft-shopping-center.jpg" alt="Item 6 Logo">
<a href="https://www.ebay.com">Ebay</a>
</div>
<!-- Row 3 -->
<div class="grid-item">
<img src="etsy-transparent-logo-for-dinosoft-shopping-center.jpg" alt="Item 7 Logo">
<a href="https://www.etsy.com">Etsy</a>
</div>
<div class="grid-item">
<img src="macy's-transparent-logo-for-dinosoft-shopping-center.jpg" alt="Item 8 Logo">
<a href="https://www.macys.com">Macy's</a>
</div>
<div class="grid-item">
<img src="zappos-transparent-logo-for-dinosoft-shopping-center.jpg" alt="Item 9 Logo">
<a href="https://www.zappos.com">Zappos</a>
</div>
<!-- Row 4 -->
<div class="grid-item">
<img src="overstock-transparent-logo-for-dinosoft-shopping-center.jpg" alt="Item 10 Logo">
<a href="https://www.overstock.com">Overstock</a>
</div>
<div class="grid-item">
<img src="google-transparent-logo-for-dinosoft-shopping-center.jpg" alt="Item 11 Logo">
<a href="https://store.google.com/us/?hl=en-US&pli=1">Google Store</a>
</div>
<div class="grid-item">
<img src="jcp-transparent-logo-for-dinosoft-shopping-center.jpg" alt="Item 12 Logo">
<a href="https://www.jcpenney.com/">JCPennny</a>
</div>
</div>
</div>
<style>
body {
background-image: url('wallpaper-background-for-dinosoft-shopping-center.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
</style>
</body>
</html>