-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjuegos.html
90 lines (88 loc) · 3.52 KB
/
juegos.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Buscador de juegos</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link rel="stylesheet" href="css/estilos.css" type="text/css" />
</head>
<body>
<div class="container">
<header class="row">
<filter class="col-3">
<select class="form-select" aria-label="Default select example">
<option value="0" selected>Filtrar por ...</option>
<option value="1">Género</option>
<option value="2">Año</option>
</select>
</filter>
<filter class="col">
<ul>
<li class="horizontal">Género <a data-filtro="1" href="#">X</a></li>
<li class="horizontal">Año <a data-filtro="2" href="#">X</a></li>
</ul>
</filter>
</header>
<main class="row">
<aside class="col-3">
<filter class="form-check" data-tipo="checkbox">
<br>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="Arcade">
<label class="form-check-label" for="arcade">
Arcade
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="Aventuras">
<label class="form-check-label" for="aventuras">
Aventuras
</label>
</div>
</filter>
<filter data-tipo="input">
<br>
<div class="input-group-mb-3">
<span class="input-group-text" id="año">Año</span>
<input type="text" class="form-control" aria-describedby="año">
</div>
</filter>
</aside>
<section class="col">
<table class="table">
<thead>
<tr>
<td>Título</td>
<td>Género</td>
<td>Año</td>
<td>Precio</td>
</tr>
</thead>
<tbody>
<tr>
<td>Assassin’s Creed® Brotherhood</td>
<td>Carreras</td>
<td>2020</td>
<td>50</td>
</tr>
<tr>
<td>Bionic Commando: Rearmed</td>
<td>Deportes</td>
<td>2015</td>
<td>10</td>
</tr>
<tr>
<td>Darksiders</td>
<td>Arcade</td>
<td>2019</td>
<td>45</td>
</tr>
</tbody>
</table>
</section>
</main>
</div>
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
<script src="js/juegos.js"></script>
</body>
</html>