Añadidos juegos

This commit is contained in:
2025-08-21 23:42:55 +02:00
parent ec9c7d8d63
commit 90b2643d8d
46 changed files with 3936 additions and 0 deletions

20
simon-dice/index.html Normal file
View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Simon Dice</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Simon Dice</h1>
<div id="game-container">
<div class="color-btn" id="green"></div>
<div class="color-btn" id="red"></div>
<div class="color-btn" id="yellow"></div>
<div class="color-btn" id="blue"></div>
</div>
<div id="status"></div>
<button id="start-btn">Empezar</button>
<script src="script.js"></script>
</body>
</html>