-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
162 lines (142 loc) · 6.17 KB
/
index.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!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>Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
<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:wght@200&family=Raleway:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<header class="header">
<div class="container">
<div class="header_wrapper">
<div class="header__logo">
<p>Augustine</p>
</div>
<div class="header__menu">
<ul>
<li><a href="#">Shop</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</div>
</div>
</header>
<section class="title">
<div class="container">
<div class="title_wrapper">
<div class="title__text">
<p>FREE Shipping on orders over $40 Shop now!</p>
</div>
</div>
</div>
</section>
<section class="refresh">
<div class="container">
<div class="refresh_wrapper">
<div class="refresh__image">
<img src="./assets/title-1.webp" alt="">
</div>
<div class="refresh__text">
<p class="refresh__text--title">Refresh your closet
</p>
<p class="refresh__text--subtitle">Shop the latest looks today.
</p>
<button class="refresh__text--btn">Shop Now</button>
</div>
</div>
</div>
</section>
<section class="fall">
<div class="container">
<div class="fall_wrapper">
<div class="fall__text">
<p class="fall__text--title">Fall collection ‘20</p>
<p class="fall__text--desc">Discover the pre-fall collections arriving now.
</p>
<button class="fall__text--btn">Shop Now</button>
</div>
<div class="fall__image">
<img class="fall__image--img1" src="./assets/card-1.avif" alt="">
<img class="fall__image--img2" src="./assets/card-2.avif" alt="">
<img class="fall__image--img3" src="./assets/card-3.avif" alt="">
</div>
</div>
</div>
</section>
<section class="background">
<div class="container">
<div class="background_wrapper">
<div class="background__text">
<p>Inspired by your life</p>
</div>
</div>
</div>
</section>
<section class="clothing">
<div class="container">
<div class="clothing_wrapper">
<div class="clothing__items">
<div class="clothing__items--1">
<img class="clothing__items--1--img" src="./assets/card-4.avif" alt="clothing-img1">
<p class="clothing__items--1--title">Clothing</p>
<p class="clothing__items--1--desc">Discover the pieces that complete your wardrobe.</p>
<button class="clothing__items--1--btn">Shop clothing</button>
</div>
<div class="clothing__items--1">
<img class="clothing__items--1--img" src="./assets/card-5.avif" alt="clothing-img2">
<p class="clothing__items--1--title">Accessories</p>
<p class="clothing__items--1--desc">No look is complete without there beautiful accessories.
</p>
<button class="clothing__items--1--btn">Shop accessories</button>
</div>
</div>
</div>
</div>
</section>
<section class="subscribe">
<div class="container">
<div class="subscribe_wrapper">
<div class="subscribe__text">
<p class="subscribe__text--title">Never miss a drop
</p>
<p class="subscribe__text--desc"><strong> Subscribe to get special offers, free giveaways, and once-in-a-lifetime deals.</strong></p>
<input type="email" class="subscribe__text--input" placeholder="Your email address">
<button class="subscribe__text--btn">Join</button>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="footer_wrapper">
<div class="footer__text">
<div class="footer__text--left">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Contact us</a></li>
<li><a href="#">About us</a></li>
<li><a href="#">Payments & delivery</a></li>
</ul>
</div>
<div class="footer__text--right">
<p class="footer__text--right--title" >Need help?</p>
<p class="footer__text--right--email"><a href="mailto:[email protected]">[email protected]</a></p>
<div class="footer__text--right--social">
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-instagram"></i>
</div>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>