-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (24 loc) · 870 Bytes
/
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Visualizador de Partículas 3D</title>
<style>
body { margin: 0; }
canvas { display: block; }
</style>
<link rel="stylesheet" href="style.css"> <!-- Vincular el archivo CSS -->
</head>
<body>
<script src="planeta.js" type="module"></script>
<div id="popup" style="display: none;">
<div id="popup-content">
<h1>¡Hola!</h1>
<p>Descubriste el mensaje secreto de esta aplicación. Felicitaciones,</p>
<p>como desarrollador es divertido incorporar pequeños dinamimos a mis aplicaciones,</p>
<p>rompiendo lo que se dice: 'la cuarta pared'. Saludos a quien lea. </p>
</div>
</div>
</body>
</html>