-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
176 lines (154 loc) · 5.55 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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<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>Hoodie</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav>
<div class="nav">
<a href="#home" class="active">Home</a>
<a href="#Articles">Products</a>
<a href="#contact">Contact</a>
<a href="#about">About</a>
</div>
<div>
</nav>
<header>
<div class="header-content">
<h1 class="main-headings">
New Cocktail <br />
<span>Hoodies</span>
</h1>
<p class="primary-headings">
Lorem Ipsum dolor sit amet, constecture adipiscing elit, sed do
eiusmod. Sit amet, constecture orem Ipsum dolor adipiscing elit, sed
do eiusmod.
</p>
<div class="btns-container">
<button class="btn-fill">Shop Now</button>
<button class="btn-outline active">50% OFF</button>
</div>
</div>
<div class="img-container">
<div class="header-img"></div>
</div>
</header>
<section class="section-one">
<div class="img-container">
<div class="section-one-img header-img"></div>
</div>
<div class="section-content">
<h1 class="main-headings">
Summer <span>Sell <br /> Offer</span>
</h1>
<p class="primary-headings">
Lorem Ipsum dolor sit amet, constecture adipiscing elit, sed do
eiusmod.
</p>
<button class="btn-fill">Learn More</button>
</div>
</div>
</section>
<section class="products">
<h1 class="products-heading">OUR PRODUCTS</h1>
<section class="product-categories">
<button class="btn-outline active">NEW ARRIVALS</button>
<button class="btn-outline">TOP RATING</button>
<button class="btn-outline">BEST SELLER</button>
</section>
<div class="product-items-container">
<div class="item">
<div class="item-layer">
<img src="images/Product/1.png" >
</div>
<h4 class="item-name">Red Hoodie</h4>
<p class="item-price">$52.99</p>
<a href="#" class="view-product">View Product</a>
</div>
<div class="item">
<div class="item-layer">
<img src="images/Product/2.png" >
</div>
<h4 class="item-name">Black Luxurious Hoodie</h4>
<p class="item-price">$52.99</p>
<a href="#" class="view-product">View Product</a>
</div>
<div class="item">
<div class="item-layer">
<img src="images/Product/3.png" >
</div>
<h4 class="item-name">Teal Expensive Hoodie</h4>
<p class="item-price">$52.99</p>
<a href="#" class="view-product">View Product</a>
</div>
<div class="item">
<div class="item-layer">
<img src="images/Product/2.png" >
</div>
<h4 class="item-name">Red Hoodie</h4>
<p class="item-price">$52.99</p>
<a href="#" class="view-product">View Product</a>
</div>
<div class="item">
<div class="item-layer">
<img src="images/Product/3.png" >
</div>
<h4 class="item-name">Black Luxurious Hoodie</h4>
<p class="item-price">$52.99</p>
<a href="#" class="view-product">View Product</a>
</div>
<div class="item">
<div class="item-layer">
<img src="images/Product/1.png" >
</div>
<h4 class="item-name">Teal Expensive Hoodie</h4>
<p class="item-price">$52.99</p>
<a href="#" class="view-product">View Product</a>
</div>
</div>
</section>
<h1 class="customers-heading">OUR CLIENT'S SAYS</h1>
<section class="customers-reviews">
<div class="customer">
<div class="customer-img">
<div class="img img-one"></div>
</div>
<h1 class="customer-name">Anna Maria</h1>
<p class="customer-description">Lorem Ipsum dolor sit amet, constecture adipiscing elit, sed</p>
</div>
<div class="customer">
<div class="customer-img">
<div class="img img-two"></div>
</div>
<h1 class="customer-name">Anna Maria</h1>
<p class="customer-description">Lorem Ipsum dolor sit amet, constecture adipiscing elit, sed</p>
</div>
<div class="customer">
<div class="customer-img">
<div class="img img-three"></div>
</div>
<h1 class="customer-name">Anna Maria</h1>
<p class="customer-description">Lorem Ipsum dolor sit amet, constecture adipiscing elit, sed.</p>
</div>
</section>
<footer>
<div class="container">
<h1 class="footer-heading">Location</h1>
<h2 class="footer-primary-heading">Start With Our Fresh shrimps</h2>
<h2 class="footer-primary-heading">4213 Somewhere On Earth</h2>
</div>
<div class="container">
<h1 class="footer-heading">Working Hours</h1>
<h2 class="footer-primary-heading">Monday - Thursday - Friday</h2>
<h2 class="footer-primary-heading">Saturday - Sunday</h2>
</div>
<div class="container">
<h1 class="footer-heading">Contact Us</h1>
<h2 class="footer-primary-heading">[email protected]</h2>
</div>
</footer>
</body>
</html>