-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgames.html
More file actions
72 lines (68 loc) · 2.56 KB
/
games.html
File metadata and controls
72 lines (68 loc) · 2.56 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nuestros Juegos - LA FORJA</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav class="navbar" id="navbar">
<div class="nav-container">
<div class="nav-logo" onclick="window.location.href='index.html'">
<img src="logo.png" alt="LA FORJA" class="logo-img">
<span class="logo-text">LA FORJA</span>
</div>
<div class="nav-menu" id="navMenu">
<a href="index.html" class="nav-link">Inicio</a>
<a href="games.html" class="nav-link active">Juegos</a>
<a href="about.html" class="nav-link">Nosotros</a>
<a href="contact.html" class="nav-link">Contacto</a>
</div>
<div class="nav-toggle" id="navToggle">
<span></span>
<span></span>
<span></span>
</div>
</div>
</nav>
<section class="hero" style="min-height: 60vh;">
<div class="hero-particles" id="particles"></div>
<div class="hero-content">
<h1 class="hero-title">
<span class="title-line">Nuestros</span>
<span class="title-line">Juegos</span>
</h1>
<p class="hero-subtitle">Descubre nuestras creaciones</p>
</div>
</section>
<section class="games-section" id="games">
<div class="container">
<h2 class="section-title scroll-reveal">Todos Nuestros Juegos</h2>
<div class="games-grid" id="gamesGrid">
<!-- Las cards se cargarán aquí dinámicamente -->
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-brand">
<span class="logo-text">LA FORJA</span>
<p>Forjando experiencias únicas</p>
</div>
<div class="footer-links">
<a href="index.html">Inicio</a>
<a href="games.html">Juegos</a>
<a href="about.html">Nosotros</a>
<a href="contact.html">Contacto</a>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 LA FORJA. Todos los derechos reservados.</p>
</div>
</div>
</footer>
<script src="js/app.js"></script>
</body>
</html>