-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 1.18 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="estilos.css">
<title>Simon Dice</title>
</head>
<body>
<h1 class="titulo">Simon Dice</h1>
<h4 id="nivel"></h4>
<div class="container">
<div class="container__color">
<div id="btn__colorVioleta" class="container__colores colores--colorVioleta"></div>
<div id="btn__colorVerde" class="container__colores colores--colorVerde"></div>
<div id="btn__colorCeleste" class="container__colores colores--colorCeleste"></div>
<div id="btn__colorNaranja" class="container__colores colores--colorNaranja"></div>
</div>
<button id="btnJuego" class="btnJuego">Iniciar Juego</button>
</div>
<footer>
<a class="github" target="blank" href="https://github.com/edex-13">Mi github</a>
</footer>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="index.js"></script>
</body>
</html>