-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (66 loc) · 1.88 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header>
<h1>AMEER HAMZA'S Store</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Shop</a></li>
<li><a href="#">Cart</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<section class="products">
<div class="product">
<img src="product1.jpg" alt="Product 1">
<h2>Product 1</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<p>$19.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="product2.jpg" alt="Product 2">
<h2>Product 2</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<p>$29.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="product3.jpg" alt="Product 3">
<h2>Product 3</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<p>$39.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="product4.jpg" alt="Product 4">
<h2>Product 4</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<p>$49.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="product5.jpg" alt="Product 5">
<h2>Product 5</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<p>$59.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="product6.jpg" alt="Product 6">
<h2>Product 6</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<p>$69.99</p>
<button>Add to Cart</button>
</div>
</section>
<footer>
<p>© 2023 AMEER HAMZA. All rights reserved.</p>
</footer>
</body>
</html>