-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
162 lines (152 loc) · 5.36 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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>E-Commerce Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Header Section -->
<header>
<div class="nav-container">
<div class="logo">
<a href="#">Exclusive</a>
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Sign Up</a></li>
</ul>
</nav>
</div>
<div class="content">
<h3>Woman's Fashion</h3>
<h3>Men's Fashion</h3>
<h3>Electronics</h3>
<h3>Home & Lifestyle</h3>
<h3>Medicine</h3>
<h3>Sports & Toys</h3>
<h3>Baby's toys</h3>
<h3>Groceries & pets</h3>
<h3>Health & Beauty</h3>
</div>
<div class="image">
<img src="front.png" >
</div>
</header>
<!-- Flash Sales Section -->
<section class="flash-sales">
<h2>Flash Sales</h2>
<div class="product-grid">
<div class="product-card">
<img src="item1.png" alt="Product 1">
<h3>Product Name 1</h3>
<p>$59.99</p>
<div class="countdown">
<span id="hours">00</span> :
<span id="minutes">00</span> :
<span id="seconds">00</span>
</div>
<button>Add to Cart</button>
</div>
<div class="product-card">
<img src="item2.png" alt="Product 2">
<h3>Product Name 2</h3>
<p>$99.99</p>
<div class="countdown">
<span id="hours2">00</span> :
<span id="minutes2">00</span> :
<span id="seconds2">00</span>
</div>
<button>Add to Cart</button>
</div>
<div class="product-card">
<img src="item3.png" alt="Product 2">
<h3>Product Name 2</h3>
<p>$99.99</p>
<div class="countdown">
<span id="hours2">00</span> :
<span id="minutes2">00</span> :
<span id="seconds2">00</span>
</div>
<button>Add to Cart</button>
</div>
<div class="product-card">
<img src="item4.png" alt="Product 2">
<h3>Product Name 2</h3>
<p>$99.99</p>
<div class="countdown">
<span id="hours2">00</span> :
<span id="minutes2">00</span> :
<span id="seconds2">00</span>
</div>
<button>Add to Cart</button>
</div>
<button>Add to Cart</button>
</div>
</section>
<!-- Categories Section -->
<section class="categories">
<h2>Browse By Category</h2>
<div class="category-list">
<div class="category-item">
<img src="Category-Phone.png" alt="Phone">
<p>Phones</p>
</div>
<div class="category-item">
<img src="Category-Phone (2).png" alt="Laptop">
<p>Laptops</p>
</div>
<div class="category-item">
<img src="Category-Phone (3).png" alt="Gaming">
<p>Gaming</p>
</div>
<div class="category-item">
<img src="Category-Phone (4).png" alt="Gaming">
<p>Gaming</p>
</div>
<div class="category-item">
<img src="Category-Phone (5).png" alt="Gaming">
<p>Gaming</p>
</div>
<!-- Repeat for other categories -->
</div>
</section>
<!-- Best Selling Products Section -->
<section class="best-selling">
<h2>Best Selling Products</h2>
<div class="product-grid">
<div class="product-card">
<img src="item2.png" alt="Jacket">
<h3>Winter Jacket</h3>
<p>$120.00</p>
<button>Add to Cart</button>
</div>
<div class="product-card">
<img src="item4.png" alt="Handbag">
<h3>Classic Handbag</h3>
<p>$79.99</p>
<button>Add to Cart</button>
</div>
<!-- Repeat product card for more products -->
</div>
</section>
<!-- Footer Section -->
<footer>
<div class="footer-container">
<div class="footer-links">
<h3>Quick Links</h3>
<ul>
<li><a href="#">Support</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms & Conditions</a></li>
</ul>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>