-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaptopDeal.html
More file actions
152 lines (137 loc) · 3.7 KB
/
laptopDeal.html
File metadata and controls
152 lines (137 loc) · 3.7 KB
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
<!DOCTYPE html>
<style>
body {
font-family: 'Segoe UI', sans-serif;
background: #f4f6f8;
padding: 40px;
}
h2 {
margin-bottom: 20px;
color: #333;
}
table {
width: 100%;
border-collapse: collapse;
background: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
border-radius: 8px;
overflow: hidden;
}
th, td {
padding: 14px 18px;
border-bottom: 1px solid #e0e0e0;
text-align: left;
vertical-align: top;
}
th {
background-color: #2c3e50;
color: #fff;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
tr:hover {
background-color: #f2f6fa;
}
a {
color: #1a73e8;
text-decoration: none;
word-break: break-word;
}
a:hover {
text-decoration: underline;
}
td:nth-child(3) {
font-size: 14px;
color: #333;
}
td:nth-child(4) {
font-weight: bold;
color: #2e7d32;
}
@media (max-width: 768px) {
table, thead, tbody, th, td, tr {
display: block;
}
th {
display: none;
}
tr {
margin-bottom: 20px;
background: #fff;
border: 1px solid #ddd;
border-radius: 6px;
padding: 10px;
}
td {
border: none;
padding: 10px 0;
position: relative;
}
td::before {
content: attr(data-label);
font-weight: bold;
display: block;
margin-bottom: 5px;
color: #555;
}
}
</style>
<body lang="en">
<h2>Laptop Deals: Best gaming laptop between 70 to 90k</h2>
<table>
<thead>
<tr>
<th>ID</th>
<th>Link</th>
<th>Details</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td><a href="https://amzn.to/3GBZOFB" target="_blank">ASUS TUF Gaming A15</a></td>
<td>15.6" FHD, Ryzen 7 7435HS, 16GB/512GB, RTX 3050, Win 11, Office 2024, Graphite Black, 2.3kg</td>
<td>₹66k</td>
</tr>
<tr>
<td>2</td>
<td><a href="https://amzn.to/44Iwghs" target="_blank">Lenovo Smartchoice LOQ</a></td>
<td>15.6" FHD 144Hz, i5-12450HX, 16GB/512GB, RTX 3050-6GB, Win 11, Office 21, Grey, 2.4kg</td>
<td>₹68k</td>
</tr>
<tr>
<td>3</td>
<td><a href="https://www.amazon.in/Acer-7-7735HS-Graphics-Windows-ANV15-41/dp/B0DFWRZLK5" target="_blank">Acer Nitro V 15</a></td>
<td>15.6" FHD 144Hz, Ryzen 7 7735HS, 16GB/512GB, RTX 4050, Win 11, Obsidian Black, 2.1kg</td>
<td>₹75k</td>
</tr>
<tr>
<td>4</td>
<td><a href="https://www.amazon.in/ASUS-Gaming-Windows-Graphics-V3607VU-RP275WS/dp/B0DSHXWLNW" target="_blank">ASUS Gaming V16</a></td>
<td>16" Matte Black, Core 7 240H, 16GB/512GB, RTX 4050, 144Hz, Win 11, Office 2024, 1.95kg</td>
<td>₹88k</td>
</tr>
<tr>
<td>5</td>
<td><a href="https://amzn.to/45ZOVHX" target="_blank">MSI Thin 15 (i5)</a></td>
<td>40cm FHD 144Hz, i5-13420H, 16GB/1TB, RTX 4050, Win 11, Cosmos Gray, 1.86kg</td>
<td>₹76k</td>
</tr>
<tr>
<td>6</td>
<td><a href="https://amzn.to/4kyHdYT" target="_blank">MSI Thin 15 (i7)</a></td>
<td>40cm, i7-13620H, 16GB/512GB, RTX 4050, Win 11, Cosmos Gray, 1.86kg</td>
<td>₹87k</td>
</tr>
<tr>
<td>7</td>
<td><a href="https://amzn.to/46ATTej" target="_blank">ASUS TUF A15 (1TB)</a></td>
<td>15.6" FHD 144Hz, Ryzen 7 7435HS, 16GB/1TB, RTX 3050, Win 11, Black, 2.3kg</td>
<td>₹69k</td>
</tr>
</tbody>
</table>
</body>
</html>