-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpalabras.html
61 lines (50 loc) · 2.22 KB
/
palabras.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<title>Juego del ahorcado</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" type="image/x-icon" href="img/favicon.png">
</head>
<body>
<div class="container">
<nav>
<a href="index.html"><img class="logo" src="icons/logo.svg" alt="logo_aula"></a>
</nav>
<div class="page-container">
<div class="main-section">
<textarea onkeypress="return (event.charCode >= 97 && event.charCode <= 122)" maxlength="8"
id="texto-nombre" placeholder="Ingrese una palabra"></textarea>
<div class="section-warning mb-16">
<img class="logo" src="icons/warning.svg" alt="">
<p id="maximo"> Máximo 8 letras. </p>
</div>
<textarea onkeypress="return (event.charCode >= 97 && event.charCode <= 122)" id="texto-categoria"
placeholder="Escriba la categoría"></textarea>
<div class="section-warning mb-16">
<img class="logo" src="icons/warning.svg" alt="">
<p id="maximo"> No use números ni caracteres especiales. </p>
</div>
<div class="section-buttons mb-64">
<button id="guardar" class="btn btn-primary mb-24" type="button"
onclick="agregarPalabra()">
Guardar y empezar
</button>
<button id="cancelar" class="btn btn-secondary" type="button" onclick="location.href='index.html'">
Cancelar
</button>
</div>
</div>
</div>
<footer>
<img src="icons/github.svg" alt="logo_github">
<a href="https://github.com/LauraMamian"> Laura Andrea Mamián Cerón </a>
<img src="icons/github.svg" alt="logo_github">
</footer>
</div>
<script src="https://cdn.lordicon.com/xdjxvujz.js"></script>
<script src="js/index.js"></script>
</body>
</html>