forked from Abhilash-0322/Gadgets_Horizon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreviews.html
320 lines (287 loc) · 9.92 KB
/
reviews.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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gadget Reviews</title>
<link rel="shortcut icon" href="advancement.png" type="image/x-icon">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
color: #333;
}
/* Sticky header */
header {
background-color: #fff;
color: black;
padding: 10px 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 1000;
}
/* Flexbox for header */
header .header-container {
display: flex;
justify-content: space-between;
align-items: center;
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
background-color: #333;
padding: 15px 0;
margin: 0;
}
nav ul li {
margin: 0 20px;
}
nav ul li a {
color: white;
text-decoration: none;
font-size: 18px;
transition: color 0.3s;
}
nav ul li a:hover {
color: #ff9900;
}
/* Search bar */
.search-container {
position: relative;
}
.search-bar {
padding: 7px;
font-size: 16px;
border: 2px solid #333;
border-radius: 20px;
width: 250px;
}
.search-button {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
border: none;
background-color: transparent;
cursor: pointer;
font-size: 18px;
}
main {
padding: 20px;
}
h2 {
color: #333;
font-size: 28px;
margin-bottom: 15px;
}
.review-page {
display: flex;
flex-direction: column;
gap: 40px;
}
.review-section {
background-color: white;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.review-header {
width: 100%;
text-align: center;
margin-bottom: 20px;
}
.review-header img {
width: 100%;
max-width: 400px;
border-radius: 8px;
}
.review-rating {
background-color: #ff9900;
padding: 5px 10px;
border-radius: 5px;
display: inline-block;
color: white;
font-weight: bold;
}
.review-content {
flex: 2;
padding: 0 20px;
}
.review-content h3 {
font-size: 24px;
color: #333;
}
.review-text {
line-height: 1.8;
color: #555;
margin-top: 10px;
}
.review-aside {
background-color: #f8f8f8;
padding: 15px;
border-radius: 8px;
width: 100%;
max-width: 300px;
}
.review-aside h4 {
margin-bottom: 10px;
color: #333;
}
.review-aside ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.review-aside ul li {
background-color: white;
padding: 8px;
margin-bottom: 8px;
border-radius: 5px;
}
.review-aside ul li span {
font-weight: bold;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 20px 0;
margin-top: 50px;
}
</style>
</head>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gadget Reviews</title>
<link rel="shortcut icon" href="advancement.png" type="image/x-icon">
<link rel="stylesheet" href="home.css">
</head>
<body>
<header></header>
<div class="header-container">
<h1>Gadget Reviews</h1>
<div>
<input type="text" id="search-bar" placeholder="Search gadgets, reviews...">
</div>
<div id="login">
<button>Login</button>
</div>
</div>
<nav>
<ul>
<li><a href="reviews.html">Reviews</a></li>
<li><a href="#">Buying Guides</a></li>
<li><a href="#">Gaming</a></li>
<li><a href="#">Gear</a></li>
<li><a href="#">Entertainment</a></li>
</ul>
</nav>
</header>
<main>
<div class="review-page">
<!-- Review 1 -->
<div class="review-section">
<div class="review-header">
<h2>Apple iPhone 16 Review</h2>
<img src="images/b9a38080-756d-11ef-9fbd-6b990c391cf6.webp" alt="iPhone 16">
<p class="review-rating">Rating: 90/100</p>
</div>
<div class="review-content">
<h3>Closing the gap to the pro models</h3>
<div class="review-text">
<p><strong>By Billy Steele • 09.20.2024</strong></p>
<p>
The iPhone 16 continues to close the gap between the standard model and Apple's more premium "Pro" models.
With the inclusion of the new A17 chip, Dynamic Island, and improved battery life, the iPhone 16 feels like a
significant upgrade from its predecessor.
</p>
<h4>Key Features:</h4>
<ul>
<li>A17 Chipset</li>
<li>48MP Camera with enhanced night mode</li>
<li>Dynamic Island</li>
</ul>
</div>
</div>
<aside class="review-aside">
<h4>Specifications</h4>
<ul>
<li><span>Display:</span> 6.1-inch OLED</li>
<li><span>Processor:</span> A17 Bionic</li>
<li><span>Camera:</span> 48MP + 12MP Ultra-Wide</li>
<li><span>Battery:</span> Up to 22 hours video playback</li>
<li><span>Price:</span> Starting at $899</li>
</ul>
</aside>
</div>
<!-- Review 2 -->
<div class="review-section">
<div class="review-header">
<h2>Samsung Galaxy Flip 6 Review</h2>
<img src="images/fe731500-4b4b-11ef-b375-e212f0bf724b.webp" alt="Samsung Galaxy Flip 6">
<p class="review-rating">Rating: 86/100</p>
</div>
<div class="review-content">
<h3>A better foldable for everyone</h3>
<div class="review-text">
<p><strong>By Mat Smith • 07.29.2024</strong></p>
<p>
The Samsung Galaxy Flip 6 offers a sleek foldable design with upgraded durability. While it maintains
much of the same functionality as its predecessor, the improvements in battery life and display make it a
worthy contender in the foldable market.
</p>
</div>
</div>
<aside class="review-aside">
<h4>Specifications</h4>
<ul>
<li><span>Display:</span> 6.7-inch Dynamic AMOLED</li>
<li><span>Processor:</span> Snapdragon 8 Gen 2</li>
<li><span>Battery:</span> 3700mAh</li>
<li><span>Price:</span> Starting at $999</li>
</ul>
</aside>
</div>
<!-- Review 3 -->
<div class="review-section">
<div class="review-header">
<h2>ASUS ROG Zephyrus G16 (2024) Review</h2>
<img src="images/fa306b40-fcc8-11ee-bd7e-680f2fb9f753.webp" alt="ASUS ROG Zephyrus G16">
<p class="review-rating">Rating: 92/100</p>
</div>
<div class="review-content">
<h3>Perfect for gaming and productivity</h3>
<div class="review-text">
<p><strong>By Sam Rutherford • 08.15.2024</strong></p>
<p>
The ASUS ROG Zephyrus G16 is a powerful and lightweight gaming laptop that manages to pack in
an Intel Core i9 processor and NVIDIA RTX 4090 graphics. It's a strong contender for those who want to
combine gaming with high productivity.
</p>
</div>
</div>
<aside class="review-aside">
<h4>Specifications</h4>
<ul>
<li><span>Display:</span> 14-inch QHD</li>
<li><span>Processor:</span> Intel Core i9</li>
<li><span>GPU:</span> NVIDIA RTX 4090</li>
<li><span>Price:</span> Starting at $2,199</li>
</ul>
</aside>
</div>
</div>
</main>
<footer>
<p>© 2024 Gadget Reviews. All rights reserved.</p>
</footer>
</body>
</html>