-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
202 lines (149 loc) · 5.5 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home-TechPage</title>
<link href="https://fonts.googleapis.com/css2?family=Heebo:wght@300;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="container">
<section class="logo">
<a href="index.html">
<strong>Your</strong>
<span class="blue-dot"></span>
logo
</a>
</section>
<nav>
<ul>
<li><a href="about.html">About us</a></li>
<li><a href="index.html#best-sellers-section">Best-Sellers</a></li>
<li><a href="index.html#newsletter-section">Newsletter</a></li>
<li class="menu"><img src="images/menu_icon.png" alt=""></li>
</ul>
</nav>
</div>
</header>
<section class="hero">
<picture>
<source media = "(max-width:576px)" srcset="images/Hero_Mobile.jpg">
<source media = "(max-width:960px)" srcset="images/Hero_Tablet.jpg">
<source media = "(max-width:1440px)" srcset="images/Hero_Desktop.jpg">
<img src="images/Hero_Large_Desktop.jpg" alt="hero image-smart watch">
</picture>
<div class="hero-content">
<div class="container">
<h1>Explore our new smart watch series</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
In pellentesque, nisi id viverra aliquam, libero ipsum vehicula.
</p>
<button>SEE ALL WATCHES</button>
</div>
</div>
</section>
<section class="best-sellers" id="best-sellers-section">
<h2>Best Sellers</h2>
<hr>
<div class="product-sliders">
<div class="container">
<div class="product">
<div class="new">New</div>
<div class="product-image">
<img src="images/Watch_case.jpg" alt="product:Penom Case">
</div>
<div class="product-info">
<h5 class="categories">Smart Watches, Cases, Apple</h5>
<h4 class="title">Penom Case for Apple Watch</h4>
<h3 class="price">
<span>US$ 6.99</span>
</h3>
<button>ADD TO BAG</button>
</div>
</div>
<div class="product">
<div class="new">New</div>
<div class="product-image">
<img src="images/Headphone.jpg" alt="product:Noise Cancelling Headphone">
</div>
<div class="product-info">
<h5 class="categories">Headphones, Audio, Sound</h5>
<h4 class="title">Noise Cancelling Headphone</h4>
<h3 class="price">
<span>US$ 18.49</span>
</h3>
<button>ADD TO BAG</button>
</div>
</div>
<div class="product">
<div class="product-image">
<img src="images/Camera.jpg" alt="product:Canon Digital SLR EOS Rebel T6">
</div>
<div class="product-info">
<h5 class="categories">Cameras, Kits, Photo & Video</h5>
<h4 class="title">Canon Digital SLR EOS Rebel T6</h4>
<h3 class="price">
<span class="discounted-price">US$ 396.89</span>
<span class="original-price">US$ 429.34</span>
</h3>
<button>ADD TO BAG</button>
</div>
</div>
</div>
</div>
</section>
<section class="newsletter" id="newsletter-section">
<h3>Newsletter Signup</h3>
<p>Subscribe now and don't miss a single deal!</p>
<form>
<input type="email" name="email" placeholder="Your email...">
<button type="submit">Subscribe</button>
</form>
</section>
<footer>
<div class="bottom">
<div class="container">
<ul>
<li class="list-title">Categories</li>
<li><a href="#">Watches</a></li>
<li><a href="#">Cameras</a></li>
<li><a href="#">Phones</a></li>
<li><a href="#">Tablets</a></li>
<li><a href="#">Computers</a></li>
</ul>
<ul>
<li class="list-title">About us</li>
<li><a href="#">Our Story</a></li>
<li><a href="#">Press</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Awards</a></li>
<li><a href="#">Stores</a></li>
</ul>
<ul>
<li class="list-title">Social Media</li>
<li><a href="#">Facebook</a></li>
<li><a href="#">Linkedin</a></li>
<li><a href="#">Instagram</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Youtube</a></li>
</ul>
<ul>
<li class="list-title">Customer Service</li>
<li><a href="#">Live Chat</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Terms & Conditions</a></li>
<li><a href="#">Delivery & Returns</a></li>
<li><a href="#">Finance</a></li>
</ul>
</div>
</div>
<div class="copyright">
2020 © All Rights Reserved
</div>
</footer>
</body>
</html>