forked from informaticaort/IVO2024-Tetris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintro.html
38 lines (32 loc) · 996 Bytes
/
intro.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>IVO INFO 2024</title>
<link rel="stylesheet" href="assets/css/estilosInicio.css">
<link rel="shortcut icon" href="assets/images/ico.ico" />
</head>
<body>
<div class="bg-animation">
<div id="stars"></div>
<div id="stars2"></div>
<div id="stars3"></div>
<div id="stars4"></div>
</div>
<div class="container">
<div class="neon">
<!-- Título de la página -->
<span class="text" data-text="IVO INFO 2024">IVO INFO 2024</span>
<span class="gradient"></span>
<span class="spotlight"></span>
</div>
<button onclick="abrirJuego()">Jugar</button>
</div>
<script>
function abrirJuego() {
window.location.href = "index.html";
}
</script>
</body>
</html>