-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtv.html
278 lines (241 loc) · 10.5 KB
/
tv.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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link href="style.css" rel="stylesheet" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous" />
<!-- Google Font Oswald -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap"
rel="stylesheet">
<!-- JS, Popper.js, and jQuery -->
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"
integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI"
crossorigin="anonymous"
></script>
<title>2019 QLED</title>
<style>
@media (max-width: 768px) {}
</style>
</head>
<body style="font-family: 'Montserrat', sans-serif;">
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-light bg-white fixed-top" style="min-height: 70px;">
<div class="container">
<a class="navbar-brand text-uppercase font-weight-bold" style="color: #1428a0;" href="#">Samsung
Pakistan</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item pr-4">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item pr-4">
<a class="nav-link" href="mobiles.html">Mobiles</a>
</li>
<li class="nav-item pr-4 active">
<a class="nav-link" href="tv.html">TV <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact Us</a>
</li>
</ul>
</div>
</div>
</nav>
<section id="header">
<div class="header-div"></div>
<div class="header-text">
<h1 class="main-heading display-2">Introducing 2019 QLED 8K</h1>
<h3 class="sub-heading display-4">One giant leap for resolution</h3>
</div>
</section>
<section id="reviews">
<div>
<div class="container">
<h4 class="reviews-para">
From picture quality to design, our all new QLED TVs push the
boundaries of what’s possible. Immerse yourself in an experience
that’s tailored to you and blends beautifully into your life.
</h4>
<h1 class="display-4 reviews-main">
Don't just take our word for it.
</h1>
<div class="row">
<div class="col-md-5 m-4 review-by1">
<div class="review-details">
<h5 class="mb-4">
“Capable of competing with and often surpassing even the best
OLEDs”
</h5>
<p class="mb-4">65Q90R, TechRadar, February 2019</p>
<button class="mb-4 btn btn-outline-dark">Read More</button>
</div>
</div>
<div class="col-md-5 m-4 review-by2">
<div class="review-details">
<h5 class="mb-4">“A stellar TV that sets a mighty high bar”</h5>
<p class="mb-4">65Q90R, Trusted Reviews, February 2019</p>
<button class="mb-4 btn btn-outline-dark">Read More</button>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="section-text">
<div class="container">
<h1 class="display-4 section-text-heading">
5 Innovations <br />
that make QLED different
</h1>
<p class="text-para">
<strong>
With 5 innovations that have powerful intelligence,<br />
standard-setting picture quality,<br />
and ultimate usability--QLED breaks all conventions.
</strong>
</p>
</div>
</section>
<section id="section-whale">
<div class="whale-div"></div>
<h1 class="main-heading-whale display-2">
8K lifelike experience<br />
up close
</h1>
<div class="whale-details">
<h4>
8K Resolution on Super Big TV
</h4>
<h5 class="mb-4">
Immerse yourself in QLED 8K screen and dive into another world. Packed
with an incredible 33 million pixels*, it's a new visual experience
that gives you a taste of true realism up close.
</h5>
<button class="btn btn-outline-light btn-lg mt-2 mb-4">
Learn More
</button>
</div>
</section>
<section id="section-whale2">
<div class="whale2-div"></div>
<div class="whale2-details">
<h1 class="main-heading-whale2 display-2">
Go Deeper into the Sea
</h1>
<h5 class="mb-4">
QLED takes you deeper into every scene, revealing tiny details you
never even imagined were there. Find them in stronger contrasts,
deeper blacks in dark scenes, and brighter whites in bright scenes.
</h5>
<button class="btn btn-outline-light btn-lg mt-2 mb-4">
Learn More
</button>
</div>
</section>
<section id="section-processor">
<div class="processor"></div>
<div class="processor-details">
<h1 class="display-4" style="font-weight: 700 !important;">
The Power <br />behind the innovation
</h1>
<h3 class="mb-4">Quantum Processor</h3>
<h5 class="mb-4 w-50">
Deep inside QLED is a powerful processor running on Samsung exclusive
technology. The intelligent machine-learning processor optimizes
screen brightness and sound control.
</h5>
<button class="btn btn-outline-light">Learn More</button>
</div>
</section>
<!-- Footer -->
<footer class="page-footer font-small stylish-color-dark pt-4">
<!-- Footer Links -->
<div class="container text-center text-md-left">
<!-- Grid row -->
<div class="row">
<!-- Grid column -->
<div class="col-md-6 mr-auto">
<!-- Content -->
<h5 class="font-weight-bold text-uppercase mt-3 mb-4">Samsung Pakistan</h5>
<p>Samsung is committed to complying with local laws and regulations as well as applying a strict
global
code of conduct to all employees.</p>
</div>
<!-- Grid column -->
<hr class="clearfix w-100 d-md-none">
<!-- Grid column -->
<div class="col-md-2 ml-auto">
<!-- Links -->
<h5 class="font-weight-bold text-uppercase mt-3 mb-4">Links</h5>
<ul class="list-unstyled">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="mobiles.html">Mobiles</a>
</li>
<li>
<a href="tv.html">TV</a>
</li>
<li>
<a href="contact.html">Contact Us</a>
</li>
</ul>
</div>
</div>
<!-- Grid row -->
</div>
<!-- Footer Links -->
<hr>
<!-- Social buttons -->
<ul class="list-unstyled list-inline text-center">
<li class="list-inline-item">
<a class="btn-floating btn-fb mx-1" href="https://www.instagram.com">
<img src="icons/insta-icon.svg" style="width: 30px;" alt="Kiwi standing on oval">
</a>
</li>
<li class="list-inline-item">
<a class="btn-floating btn-dribbble mx-1" href="https://www.facebook.com">
<img src="icons/fb-icon.svg" style="width: 30px;" alt="Kiwi standing on oval">
</a>
</li>
</ul>
<!-- Social buttons -->
<!-- Copyright -->
<div class="footer-copyright text-center py-3">© 2020 Copyright:
Hassan & Usman
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"
integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI"
crossorigin="anonymous"></script>
</body>