-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (118 loc) · 4.52 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
<!DOCTYPE html>
<html>
<body>
<link rel="stylesheet" href="styles.css">
<nav>
<div>
<img src="./images/logo.png" alt="Logo">
</div>
<div>
<input type="text" name="" id="" placeholder="Search">
</div>
<ul>
<li>Mens Fashion</li>
<li>Womens Fashion</li>
<li>Home & Lifestyle</li>
<li>Electronics</li>
</ul>
</nav>
<section class="hero">
<div class="slider">
<div><img src="https://ichef.bbci.co.uk/news/976/cpsprodpb/6C0F/production/_125336672_zaraphoto.jpg" alt="Slider Image 1" width="400px" height="400px"></div>
<div><img src="https://images.pexels.com/photos/267301/pexels-photo-267301.jpeg?cs=srgb&dl=pexels-pixabay-267301.jpg&fm=jpg" alt="Slider Image 2" width="400px" height="400px"></div>
<div><img src="https://images.unsplash.com/photo-1608231387042-66d1773070a5?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8NHx8c2hvZXxlbnwwfHwwfHw%3D&w=1000&q=80" alt="Slider Image 3" width="400px" height="400px"></div>
</div>
<div class="content">
<h1>Shop the Latest Deals and Promotions!</h1>
<h2>Find the perfect product at a discounted price. We're offering amazing deals on all our top products. From tech gadgets to beauty products, there's something for everyone.</h2>
<a href="#" class="cta">Shop now</a>
<div class="additional-content">
<p>Free shipping on orders over $50</p>
<p>30-day money-back guarantee</p>
<p>24/7 customer support</p>
</div>
</div>
</section>
<h2> Televisions </h2>
<img src= C:\Users\User\Desktop\TVs.jpg alt="Image of Television Sets">
<p> </p>
<h2> Laptops </h2>
<img src= C:\Users\User\Desktop\laptops.jpg alt="Image of Laptops">
<p> </p>
<h2> SmartPhones </h2>
<img src= C:\Users\User\Desktop\smartphones.jpg alt="Image of SmartPhones">
<p> </p>
<h2> Home Appliances </h2>\
<img src= C:\Users\User\Desktop\home.jpg alt="Image of Home Appliances">
<p> </p>
<footer>
<div class="container">
<div class="row">
<div class="col-md-4">
<h3>Contact Us</h3>
<p>
Address: Street Address<br />
City, State/Province<br />
Zip/Postal Code
</p>
<p>
Phone: +1-XXX-XXX-XXXX<br />
</p>
</div>
<div class="col-md-4">
<h3>About Us</h3>
</div>
<div class="col-md-4">
<h3>Get In Touch</h3>
<ul class="social-icons">
<li>
<a href="#"><i class="fa fa-facebook"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-twitter"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-instagram"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-linkedin"></i></a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<section id="customer-reviews">
<h2>Customer Reviews</h2>
<ul>
<li itemscope itemtype="https://schema.org/Review">
<h3 itemprop="author">John Smith</h3>
<div class="star-rating" aria-label="5 out of 5 stars" aria-valuemin="0" aria-valuemax="5" aria-valuenow="5" tabindex="0">
<span>★★★★★</span>
</div>
<blockquote itemprop="reviewBody">
<p>"I absolutely love this product! It's made a huge difference in my life and I would recommend it to anyone."</p>
</blockquote>
</li>
<li itemscope itemtype="https://schema.org/Review">
<h3 itemprop="author">Jane Doe</h3>
<div class="star-rating" aria-label="4 out of 5 stars" aria-valuemin="0" aria-valuemax="5" aria-valuenow="4" tabindex="0">
<span>★★★★</span>
</div>
<blockquote itemprop="reviewBody">
<p>"Overall, I'm very happy with my purchase. The product works well and the customer service was great."</p>
</blockquote>
</li>
<li itemscope itemtype="https://schema.org/Review">
<h3 itemprop="author">Bob Johnson</h3>
<div class="star-rating" aria-label="3 out of 5 stars" aria-valuemin="0" aria-valuemax="5" aria-valuenow="3" tabindex="0">
<span>★★★</span>
</div>
<blockquote itemprop="reviewBody">
<p>"The product was okay, but it wasn't quite what I was expecting. I think there are better options out there."</p>
</blockquote>
</li>
</ul>
</section>
</body>
</html>