-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (55 loc) · 2.05 KB
/
index.html
File metadata and controls
59 lines (55 loc) · 2.05 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home - My Online Store</title>
<link rel="stylesheet" href="stylehome.css">
</head>
<body>
<header>
<h1>Welcome to My Online Store</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Products.html">Products</a></li>
<li><a href="cart.html">Cart</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h2>Discover Our Latest Products</h2>
<p>Explore a wide range of high-quality products at amazing prices.</p>
<a href="Products.html" class="btn">Shop Now</a>
</section>
<section class="featured-products">
<h2>Featured Products</h2>
<div class="product">
<img src="https://via.placeholder.com/150" alt="Featured Product 1">
<h3>Featured Product 1</h3>
<p>$25</p>
<a href="Products.html" class="btn">View Details</a>
</div>
<div class="product">
<img src="https://via.placeholder.com/150" alt="Featured Product 2">
<h3>Featured Product 2</h3>
<p>$30</p>
<a href="Products.html" class="btn">View Details</a>
</div>
<div class="product">
<img src="https://via.placeholder.com/150" alt="Featured Product 3">
<h3>Featured Product 3</h3>
<p>$40</p>
<a href="Products.html" class="btn">View Details</a>
</div>
</section>
<section class="about">
<h2>About Us</h2>
<p>We offer a wide range of products to suit your needs. Our mission is to provide high-quality items at affordable prices. Shop with us and experience excellent customer service.</p>
</section>
<footer>
<p>© 2024 My Online Store</p>
</footer>
</body>
</html>