forked from shaheen234/lec6-task
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (91 loc) · 2.93 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
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="styles.css">
<body>
<h1>My First Webpage</h1>
<p>Hello world</p>
<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>
<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>