-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (84 loc) · 2.07 KB
/
Copy pathindex.html
File metadata and controls
84 lines (84 loc) · 2.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>NVIDIA GeForce RTX 50 Series</title>
<style>
body {
background: #fff;
color: #222;
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
}
h1 {
text-align: center;
color: #76b900;
}
table {
width: 70%;
margin: 30px auto;
border-collapse: collapse;
}
th, td {
border: 1px solid #bbb;
padding: 10px;
text-align: center;
}
th {
background: #eee;
}
img {
width: 120px;
height: auto;
}
</style>
</head>
<body>
<h1>NVIDIA GeForce RTX 50 Series</h1>
<table>
<tr>
<th>Model</th>
<th>Image</th>
<th>VRAM</th>
<th>CUDA Cores</th>
<th>Boost Clock</th>
</tr>
<tr>
<td>RTX 5050</td>
<td><img src="RTX 5050.jpg" alt="RTX 5050"></td>
<td>8 GB</td>
<td>4096</td>
<td>2.6 GHz</td>
</tr>
<tr>
<td>RTX 5060</td>
<td><img src="RTX 5060.jpg" alt="RTX 5060"></td>
<td>12 GB</td>
<td>6144</td>
<td>2.7 GHz</td>
</tr>
<tr>
<td>RTX 5070</td>
<td><img src="RTX 5070.jpg" alt="RTX 5070"></td>
<td>16 GB</td>
<td>8192</td>
<td>2.8 GHz</td>
</tr>
<tr>
<td>RTX 5080</td>
<td><img src="RTX 5080.jpg" alt="RTX 5080"></td>
<td>20 GB</td>
<td>12288</td>
<td>2.9 GHz</td>
</tr>
<tr>
<td>RTX 5090</td>
<td><img src="RTX 5090.jpg" alt="RTX 5090"></td>
<td>24 GB</td>
<td>18432</td>
<td>3.0 GHz</td>
</tr>
</table>
</body>
</html>