-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindeex.html
71 lines (70 loc) · 1.6 KB
/
indeex.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<form>
<table border="1">
<caption>
...
</caption>
<tr>
<th>Brand</th>
<th>CPU</th>
<th>GPU</th>
<th>RAM</th>
<th>Price</th>
<th>Image</th>
</tr>
<tr>
<td>Asus ROG Zephyrus</td>
<td>AMD Ryzen9 7945HX</td>
<td>NVIDIA GeForce RTX 4090</td>
<td>32GB</td>
<td>159,990 THB</td>
<td>
<img
src="./gx650py_3_.jpg"
alt=""
width="150"
height="150"
/>
</td>
</tr>
<tr>
<td>Lenovo Legion Pro 7</td>
<td>Intel Core i9-13900HX</td>
<td>NVIDIA GeForce RTX 4080</td>
<td>32GB</td>
<td>119,990 THB</td>
<td>
<img
src="./lenovo-legion-pro-7.jpg"
alt=""
width="150"
height="150"
/>
</td>
</tr>
<tr>
<td>MSI Stealth 17Studio</td>
<td>Intel Core i9-13900H</td>
<td>NVIDIA GeForce RTX 4090</td>
<td>64GB</td>
<td>149,990 THB</td>
<td>
<img
src="./images.jpg"
alt=""
width="150"
height="150"
/>
</td>
</tr>
</table>
</form>
</body>
</html>