-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproductos.html
More file actions
97 lines (97 loc) · 4.28 KB
/
productos.html
File metadata and controls
97 lines (97 loc) · 4.28 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="CSS/style.css">
<title>PeriféricosGamer | Productos</title>
</head>
<body>
<nav class="navBar--block">
<ul>
<li class="navBar__element--liLogo"><img src="img/logo.jfif" alt="logo" width="50px" height="25px"></li>
<li class="navBar__element--li"><a class=".navBar__element--litext" href="index.html">Home</a></li>
<li class="navBar__element--li"><a class=".navBar__element--litext" href="productos.html">Productos</a></li>
<li class="navBar__element--li"><a class=".navBar__element--litext" href="sobrenosotros.html">Sobre Nosotros</a></li>
<li class="navBar__element--li"><a class=".navBar__element--litext" href="registro.html">Registrarse</a></li>
<li class="navBar__element--li"><a class=".navBar__element--litext" href="login.html">Iniciar Sesión</a></li>
</ul>
</nav>
<main class="mainProductosFlex--block"
<aside class="mainProductosFlex__element--asideFiltros">
<div>
<h2 class="mainProductosFlex__element--tituloPerifericos">Periféricos</h2>
<form action="" class="mainProductosFlex__element--perifericos">
<input type="checkbox" name="mouse">
<label for="mouse">Mouse</label><br>
<input type="checkbox" name="teclados">
<label for="teclados">Teclados</label><br>
<input type="checkbox" name="headsets">
<label for="headsets">Headsets</label><br>
<input type="checkbox" name="mousepads">
<label for="mousepads">Mousepads</label>
</form>
<h2 class="mainProductosFlex__element--tituloMarcas">Marcas</h2>
<form action="" class="mainProductosFlex__--marcasProductos">
<input type="checkbox" name="razer">
<label for="razer">Razer</label><br>
<input type="checkbox" name="logitech">
<label for="logitech">Logitech</label><br>
<input type="checkbox" name="hyperx">
<label for="hyperx">HyperX</label><br>
<input type="checkbox" name="corsair">
<label for="corsair">Corsair</label><br>
<input type="checkbox" name="redragon">
<label for="redragon">Redragon</label><br>
<input type="checkbox" name="thermaltake">
<label for="thermaltake">Thermaltake</label><br>
<input type="checkbox" name="nisuta">
<label for="nisuta">Nisuta</label><br>
<input type="checkbox" name="trustgaming">
<label for="trustgaming">TrustGaming</label><br>
<input type="checkbox" name="noganet">
<label for="noganet">Noganet</label>
</form>
</div>
</aside>
<section class="mainProductosFlex__element--seccionProductos">
<div>
<img src="img/tecladothermaltake.jpg" alt="Teclado Thermaltake" width="100" height="60">
<h6>Thermaltake Tt Esports Poseidon Z</h6>
</div>
<div>
<img src="img/tecladohyperx.jpg" alt="teclado HyperX" width="100" height="60">
<h6>HyperX Alloy FPS</h6>
</div>
<div>
<img src="img/tecladologitech g213.jpg" alt="Teclado Logitech" width="100" height="60">
<h5>Teclado Logitech G213</h5>
</div>
<div>
<img src="img/mouseredragon.jpg" alt="Mouse Redragon" width="60" height="100">
<h6>Redragon Cobra White</h6>
</div>
<div>
<img src="img/mouserazer.jpg" alt="Mouse Razer" width="60" height="100">
<h6>Razer DeathAdder v2</h6>
</div>
<div>
<img src="img/mouselogitech.jpg" alt="Mouse Logitech" width="60" height="100">
<h6>Logitech Hero G Series G502</h6>
</div>
<div>
<img src="img/headsetcorsair.jpg" alt="Headset Corsair" width="100" height="100">
<h6>Corsair HS35 Stereo</h6>
</div>
<div>
<img src="img/headsethyperx cloud2.jpg" alt="Headset HyperX" width="100" height="100">
<h5>Headset HyperX Cloud 2</h5>
</div>
<div>
<img src="img/headsetrazerkrakengreen.jpg" alt="Headset Razer" width="100" height="100">
<h5>Headset Razer Kraken Green</h5>
</div>
</section>
</main>
</body>
</html>