-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1.11 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
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>Alphabet soup</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="ejercicio.css" />
</head>
<body>
<nav>
<div class="cabecera">
<h2>Alphabet soup</h2>
</div>
</nav>
<section>
<div class="seccionCentral">
<input id="palabraNueva" type="text" />
<button id="anadir">Add</button>
<button id="jugar" disabled="true">PLAY</button>
<div id="lista" class="lista">
<div class="cabeceraLista">Words</div>
</div>
<!-- TABLA -->
<div id="tabla">
</div>
<!-- TABLA -->
</div>
</section>
<footer>
<button id="help" title="Muestra las palabras momentáneamente para que el profesor las pueda encontrar más rápidamente." disabled="true">HELP</button>
</footer>
</body>
<!-- Si lo pide por internet => https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js -->
<script src="jquery-3.3.1.min.js"></script>
<script src="ejercicio.js"></script>
</html>