-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (36 loc) · 1.39 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
<!--© 2024 ThMrCode (Misael Fernández Prada). Todos los derechos reservados.-->
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BLOCKS GAME</title>
<link rel="stylesheet" href="resources/styles.css">
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="resources/logo.ico" type="image/x-icon">
<meta name="description" content="Sitio Web Blocks Game"/>
<meta name="keywords" content="thmrcode, project, code, programacion">
<meta name="author" content="ThMrCode">
</head>
<body>
<header class="header">
<a href="./" class="logo">BLOCKS</a>
<nav class="nav">
<a href="./">Inicio</a>
<a href="instrucciones">Instrucciones</a>
<a href="puntuaciones">Puntuaciones</a>
<a href="contacto">Contacto</a>
</nav>
</header>
<main class="main">
<h1>¡Bienvenido a BLOCKS!</h1>
<p>Prepárate para jugar el clásico Blocks Game. ¡Desafía tus habilidades y compite por la mejor puntuación!</p>
<a href="jugar" class="play-button-link">
<button class="play-button">Iniciar Juego</button>
</a>
</main>
<footer class="footer">
<p>© 2024 ThMrCode (Misael Fernández Prada). Todos los derechos reservados.</p>
</footer>
</body>
</html>