-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
260 lines (251 loc) · 7.97 KB
/
Copy pathindex.html
File metadata and controls
260 lines (251 loc) · 7.97 KB
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MINA Shop</title>
<!-- favicon link -->
<link rel="icon" href="./img/favicon.png" type="image/gif" />
<!--linked css file-->
<link rel="stylesheet" href="./css/main.css" />
<!-- font-icons cdn link -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
/>
<!-- linked font-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- Cart Box -->
<div class="cartBox">
<i class="fa-solid fa-xmark"></i>
<h5>Shopping bag is empty</h5>
</div>
<div class="cartBox-overlay"></div>
<!--Header section starts-->
<header>
<a href="index.html" id="nameShop">MINA</a>
<div class="icons">
<!-- nav menu responsive -->
<div class="nav__shop">
<i class="fa-solid fa-bag-shopping"></i>
</div>
<div class="nav__toggle" id="navToggle">
<i class="fa-solid fa-bars nav__burger"></i>
</div>
</div>
<nav class="navMenu">
<ul class="menu" id="nav__menu">
<li class="dropdownItem">
<div>
<a id="subNavList" class="navLink">Shop</a>
<i
class="fa-solid fa-caret-down iconArrowDown"
id="dropdown"
style="font-size: 14px"
></i>
</div>
<ul class="subnav">
<li>
<a class="dropdownLink" href="./html/shop.html">All products</a>
</li>
<li>
<a class="dropdownLink" href="./html/new.html"
>New collection</a
>
</li>
</ul>
</li>
<li>
<a class="navLink" href="./html/sustainability.html"
>Sustainability</a
>
</li>
<li>
<a class="navLink" href="./html/about.html">About</a>
</li>
<li>
<a class="navLink" href="./html/contact.html">Contact</a>
</li>
<li class="navCart">
<i class="fa-solid fa-bag-shopping" style="font-size: 24px"></i>
<a>Cart (0)</a>
</li>
</ul>
</nav>
</header>
<!--Header section end-->
<div class="freeShipping flex-cen-h">
<p>Free shipping on orders over $50 amount</p>
</div>
<!--Landing section starts-->
<section id="home">
<div class="sliderHome flex-cen">
<div class="content">
<h1>Handmade ceramics</h1>
<p class="flex-cen-h">Painted clay ceramics made with love.</p>
<a class="shopButton flex-cen-h" href="./html/shop.html">
<button type="submit">Shop now</button>
</a>
</div>
</div>
</section>
<!--Landing section end-->
<!--Best seller section starts-->
<section id="bestSellers">
<h3 class="flex-cen-h reveal">Our bestsellers</h3>
<container class="productsBest reveal">
<div class="productBox">
<span class="sale">SALE</span>
<img src="./img/Home/bestSeller1.avif" alt="vase" />
<h3>'Candy' Flowerpot</h3>
<p>
<span>$59.90</span>
$49.90
</p>
</div>
<div class="productBox">
<span class="sale">SALE</span>
<img src="./img/Home/bestSeller2.avif" alt="vase" />
<h3>'Drop' Vase</h3>
<p>
<span>$59.90</span>
$49.90
</p>
</div>
<div class="productBox">
<img src="./img/Home/bestSeller3.avif" alt="vase" />
<h3>'Wave' Vase</h3>
<p>
<span style="text-decoration: none">SOLD OUT</span>
</p>
</div>
<div class="productBox">
<img src="./img/Home/bestSeller4.avif" alt="vase" />
<h3>'Sun' Vase</h3>
<p>$69.90</p>
</div>
</container>
</section>
<!--Best seller section end-->
<!--Home decor section start-->
<section id="homeDecor">
<div class="flex-cen">
<div class="content decor reveal">
<h1>Home decor items</h1>
<p class="flex-cen-h">Find your new favorite pieces.</p>
<a class="shopButton flex-cen-h reveal" href="./html/shop.html">
<button type="submit">Shop now</button>
</a>
</div>
</div>
</section>
<!--Home decor section end-->
<!--Home about section starts-->
<section id="homeInfor">
<container>
<div class="inforBox reveal">
<img src="./img/Home/homeAbout.avif" alt="vase" />
<h3>About Mina</h3>
<p>Mina is a brand born out of a passion for ceramics.</p>
<a class="learnButton reveal" href="./html/about.html">
<button type="submit">Learn more</button>
</a>
</div>
<div class="inforBox reveal">
<img src="./img/Home/homeSustainability.avif" alt="vase" />
<h3>Sustainability</h3>
<p>Mina is an eco-friendly brand that cares about sustainability.</p>
<a class="learnButton reveal" href="./html/sustainability.html">
<button type="submit">Learn more</button>
</a>
</div>
</container>
</section>
<!--Home about section end-->
<!--Home sign up section starts-->
<section id="signUp">
<div class="flex-cen">
<div class="content reveal">
<h1>Sign-up for our newsletter</h1>
<div>
<div class="flex-cen">
<input
id="email"
class="flex-cen"
type="text"
placeholder="Your email address"
required
/>
</div>
</div>
<div class="shopButton flex-cen-h reveal">
<button id="submitEmail">Submit</button>
</div>
</div>
</div>
</section>
<!--Home sign up section end-->
<!--Insta section starts-->
<section id="insta">
<h3 class="flex-cen-h reveal">Follow us on Instagram</h3>
<container style="margin-top: 40px" class="reveal">
<div class="imgBox">
<img src="./img/Home/insta1.avif" alt="vase" />
</div>
<div class="imgBox">
<img src="./img/Home/insta2.avif" alt="vase" />
</div>
<div class="imgBox">
<img src="./img/Home/insta3.avif" alt="vase" />
</div>
</container>
<a
class="instaButton flex-cen"
style="margin-top: 20px"
href="./html/about.html"
>
<button type="submit" class="reveal">@mina_studio</button>
</a>
</section>
<!--Insta section end-->
<!--Footer starts-->
<footer>
<div id="social" class="reveal">
<p
id="nameShop"
style="font-size: 32px; font-weight: 600; padding-bottom: 8px"
>
MINA
</p>
<div class="socialFlatform">
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-instagram"></i>
</div>
</div>
<div class="link reveal">
<ul>
<li>
<a href="./html/contact.html">Contact us</a>
</li>
<li>
<a>Returns</a>
</li>
<li style="margin-bottom: -5px">
<a>Payments & Delivery</a>
</li>
</ul>
</div>
</footer>
<!--Footer end-->
<script src="./scripts.js"></script>
</body>
</html>