-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.3 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="styles.css">
<title>Fundamentos-Javascript</title>
</head>
<body>
<div class="nav">
<p>Prueba de rama</p>
</div>
<!-- <h1>Game</h1> -->
<div class="gameboard">
<div id="celeste" class="gameboard__celeste" data-color="celeste"></div>
<div id="violeta" class="gameboard__violeta" data-color="violeta"></div>
<div id="naranja" class="gameboard__naranja" data-color="naranja"></div>
<div id="verde" class="gameboard__verde" data-color="verde"></div>
</div>
<div class="botoncaja">
<button id="Empezar" onclick="empezarJuego()">Empezar el juego</button>
</div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/2.1.2/sweetalert.min.js"></script>
<script src="simon.js"></script>
<!-- <script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script> -->
<!-- <script src="script.js"></script> -->
<!-- <script src="objetos.js"></script> -->
<!-- <script src="apis.js"></script> -->
</html>