-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (125 loc) · 5.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<nav class="navbar">
<div class="logo">
<a href="#">MyEcommerce</a>
</div>
<ul class="nav-links">
<li><a href="login.html"><i class="fa-regular fa-user"></i> Login</a></li>
<li><a href="cart.html"><i class="fa-solid fa-cart-shopping"></i> Cart</a></li>
<li><a href="menu.html"><i class="fa-solid fa-bars"></i> Menu</a></li>
<li><a href="#"><i class="fa-solid fa-right-from-bracket"></i> Exit</a></li>
</ul>
</nav>
<body>
<main>
<section id="hero">
<h2>Shop the Latest Trends</h2>
<p>Discover amazing products at unbeatable prices!</p>
<a href="#products" class="btn">Shop Now</a>
</section>
<div class="sale">
<img src="img/sale.jpg" alt="sale" class="product-image">
</div>
<section id="products">
<h2>Featured Products</h2>
<div class="product-grid">
<div class="product">
<img src="img/shoe1.jpeg" alt="Product 1">
<h3>Product 1</h3>
<p>$19.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="img/shoe1.jpeg" alt="Product 2">
<h3>Product 2</h3>
<p>$29.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="img/shoe2.jpg" alt="Product 3">
<h3>Product 3</h3>
<p>$39.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="img/shoe2.jpg" alt="Product 3">
<h3>Product 4</h3>
<p>$39.99</p>
<button>Add to Cart</button>
</div>
</div>
</section>
<div class="banner">
<h1>Ready To Explore !!!!</h1>
</div>
<div class="categories">
<a href="#clothes" class="category-circle"><i class="fa-solid fa-shirt"></i></a>
<a href="#category2" class="category-circle"><i class="fa-solid fa-mug-hot"></i></a>
<a href="#category3" class="category-circle"><i class="fa-solid fa-lemon"></i></a>
<a href="#category4" class="category-circle"><i class="fa-solid fa-headphones"></i></a>
<a href="#category3" class="category-circle"><i class="fa-solid fa-bath"></i></a>
<a href="#category4" class="category-circle"><i class="fa-solid fa-book"></i></a>
</div>
</main>
<h1><a id="clothes"></a></h1>
<header>
<h1>Welcome to Our Clothing Store</h1>
</header>
<nav>
<ul>
<li><a href="#brands">Brands</a></li>
<li><a href="#categories">Categories</a></li>
<li><a href="#sales">Sales</a></li>
<li><a href="#featured">Featured</a></li>
</ul>
</nav>
<main>
</style>
<section id="brands">
<h2>Brands</h2>
<div class="brand-list">
<div class="brand-item">
<img src="img/brands/puma-logo-and-art-free-vector.jpg" >
</div>
<div class="brand-item">
<img src="img/brands/puma-logo-and-art-free-vector.jpg" ></div>
<div class="brand-item">
<img src="img/brands/puma-logo-and-art-free-vector.jpg" ></div>
<div class="brand-item">
<img src="img/brands/puma-logo-and-art-free-vector.jpg" ></div>
</div>
</section>
<section id="categories">
<h2>Categories</h2>
<div class="category-list">
<div class="category-item">Men's Clothing</div>
<div class="category-item">Women's Clothing</div>
<div class="category-item">Kids' Clothing</div>
</div>
</section>
<section id="sales">
<h2>Sales</h2>
<div class="sale-item">Up to 50% off on selected items!</div>
</section>
<section id="featured">
<h2>Featured</h2>
<div class="featured-item">Featured Item 1</div>
<div class="featured-item">Featured Item 2</div>
</section>
</main>
<footer>
<p>© 2023 E-commerce Site. All rights reserved.</p>
</footer>
</body>
</html>
</body>
</html>