-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (70 loc) · 3.13 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TOPGAMES</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="container-fluid">
<h1>TOPGAMES</h1>
<nav class="d-flex justify-content-between align-items-center">
<a href="registro.html" class="btn btn-primary">Registrarse</a>
<a href="moduser.html" class="btn btn-info">Modificar Usuario</a>
<a href="login.html" class="btn btn-success">Iniciar sesión</a>
<a href="user/carrito.html" class="btn btn-warning">Carrito</a>
</nav>
</header>
<main class="container">
<section class="categories row">
<h2>Categorías</h2>
<ul class="list-unstyled row">
<li class="col-6 col-md-4 col-lg-2 mb-3">
<a href="accion.html" class="d-block">
<div class="img-container">
<img src="Imagenes/COD MW3.jpg" alt="Acción" class="img-fluid">
</div>
<span>Acción</span>
</a>
</li>
<li class="col-6 col-md-4 col-lg-2 mb-3">
<a href="supervivencia.html" class="d-block">
<div class="img-container">
<img src="Imagenes/ProjectZomboid.jpg" alt="Supervivencia" class="img-fluid">
</div>
<span>Supervivencia</span>
</a>
</li>
<li class="col-6 col-md-4 col-lg-2 mb-3">
<a href="carreras.html" class="d-block">
<div class="img-container">
<img src="Imagenes/ForzaHorizon5.jpg" alt="Carreras" class="img-fluid">
</div>
<span>Carreras</span>
</a>
</li>
<li class="col-6 col-md-4 col-lg-2 mb-3">
<a href="simulacion.html" class="d-block">
<div class="img-container">
<img src="Imagenes/MicrosoftFlightSimulator.jpg" alt="Simulación" class="img-fluid">
</div>
<span>Simulación</span>
</a>
</li>
<li class="col-6 col-md-4 col-lg-2 mb-3">
<a href="rol.html" class="d-block">
<div class="img-container">
<img src="Imagenes/TheWitcher3.jpg" alt="Rol" class="img-fluid">
</div>
<span>Rol</span>
</a>
</li>
</ul>
</section>
</main>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>