-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (83 loc) · 2.72 KB
/
index.html
File metadata and controls
89 lines (83 loc) · 2.72 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
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
<!DOCTYPE html>
<html>
<head>
<title>My E-commerce Landing Page</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="chat.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="hero">
<h1>Welcome to our E-commerce Store</h1>
<p>Find the best deals on the latest products</p>
<button>Shop Now</button>
</section>
<section id="featured-products">
<h2>Featured Products</h2>
<div class="product">
<img src="product1.jpg" alt="Product 1">
<h3>Product 1 Name</h3>
<p>Product 1 description</p>
<button>Buy Now</button>
</div>
<div class="product">
<img src="product2.jpg" alt="Product 2">
<h3>Product 2 Name</h3>
<p>Product 2 description</p>
<button>Buy Now</button>
</div>
<div class="product">
<img src="product3.jpg" alt="Product 3">
<h3>Product 3 Name</h3>
<p>Product 3 description</p>
<button>Buy Now</button>
</div>
</section>
<section id="testimonials">
<h2>What Our Customers Say</h2>
<div class="testimonial">
<img src="customer1.jpg" alt="Customer 1">
<p>"I love this store! They have the best prices and customer service."</p>
<h4>Customer 1 Name</h4>
</div>
<div class="testimonial">
<img src="customer2.jpg" alt="Customer 2">
<p>"I've purchased several products from this store and have always been satisfied with my purchases."</p>
<h4>Customer 2 Name</h4>
</div>
<div class="testimonial">
<img src="customer3.jpg" alt="Customer 3">
<p>"I highly recommend this store to anyone looking for quality products at affordable prices."</p>
<h4>Customer 3 Name</h4>
</div>
</section>
<section id="contact-us">
<h2>Contact Us</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send</button>
</form>
</section>
</main>
<footer>
<p>© 2023 My E-commerce Store</p>
</footer>
<script src="chat.js"></script>
</body>
</html>