-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (126 loc) · 5.05 KB
/
index.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1024">
<title>PROFORMA 2024/11/25</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>PROFORMA #1</h1>
</header>
<main>
<div class="top-section">
<div class="carousel">
<div class="carousel-images">
<img src="images/mbasb550m-aac.jpg" alt="Modelo Principal">
<img src="images/cpam4r75700g.jpg" alt="Componente 1">
<img src="images/me16tfzrd432hc1.jpg" alt="Componente 2">
<img src="images/ssdktsnvs2m1000.jpg" alt="Componente 3">
<img src="images/te7175wgold.jpg" alt="Componente 4">
<img src="images/csatxte1174n.jpg" alt="Componente 5">
</div>
</div>
</div>
<div class="button-container">
<button class="prev"><</button>
<button class="pause">⏸</button>
<button class="next">></button>
</div>
<table id="componentTable">
<thead>
<tr>
<th>Componente</th>
<th>Marca</th>
<th>Modelo</th>
<th>Descripción</th>
</tr>
</thead>
<tbody>
<tr>
<td>Placa Base</td>
<td>ASUS</td>
<td>PRIME B550M-A AC</td>
<td>AMD Ryzen 5000 Series/ 5000 G-Series/ 4000 G-Series/ 3000 Series
<br>4 x ranuras de memoria DDR4 / maximo de 128 GB
<br>Almacenamiento 2 x M.2 Key-M slots / 4 x SATA 6Gb/s
<br>Sonido Realtek ALC887/897 7.1 Surround Sound High Definition Audio CODEC
<br>1 x Realtek RTL8111H 1Gb Ethernet (RJ-45)
<br>WLAN 802.11a/b/g/n/ac 2.4/5GHz
<br>Bluetooth 5.0
<br>Formato mATX.</td>
</tr>
<tr>
<td>Procesador</td>
<td>AMD</td>
<td>Ryzen 7 5700G</td>
<td>3.80 / 4.60GHz
<br>8-Core
<br>16MB L3
<br>AM4
<br>7nm
<br>65W
<br>Graficos Radeon RX Vega 8
<br>Presentacion en Caja
<br>Incluye Fan-Cooler
</td>
</tr>
<tr>
<td>Memoria RAM</td>
<td>TEAMGROUP</td>
<td>T-FORCE VULCAN Z</td>
<td>TLZRD416G3200HC16F01
<br>16GB
<br>DDR4-3200 MHz
<br>1.35V
<br>CL16-20-20-40</td>
</tr>
<tr>
<td>Almacenamiento</td>
<td>KINGSTON</td>
<td>NV2</td>
<td>SNV2S/1000G
<br>M.2 2280
<br>PCIe 4.0 x4 NVMe
<br>Velocidad de escritura 2100 MB/s
<br>Velocidad de lectura 3500 MB/s.</td>
</tr>
<tr>
<td>Fuente de Poder</td>
<td>TEROS</td>
<td>TE-7175</td>
<td>ATX
<br>750W
<br>80 Plus Gold
<br>100V-240VAC
<br>CERTIFICADA
<br>1 - Conector ATX/MB 20 + 4 Pines
<br>2 - Conectores EPS/CPU 4 + 4 Pines
<br>4 - Conectores PCI-e 8 Pines (6 + 2)
<br>9 - Conectores SATA
<br>6 - Conectores para Periféricos 4 Pines
<br>2 - Conector para Floppy 4 Pines
<br>Fan de 12 cm</td>
</tr>
<tr>
<td>Gabinete</td>
<td>TEROS</td>
<td>TE-1174N</td>
<td>Mid Tower
<br>Espacio para tarjetas gráficas de hasta 41 cm
<br>Espacio para coolers de CPU de hasta 16 cm
<br>Compatible con placas Micro-ATX, ATX, E-ATX y Mini-ITX
<br>Incluye ventiladores ARGB preinstalados
<br>Panel lateral de vidrio templado
<br>Filtros antipolvo
<br>Puertos USB 3.0
<br>Control remoto
<br>No incluye fuente de alimentación.</td>
</tr>
</tbody>
</table>
</main>
<script src="script.js"></script>
</body>
</html>