-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhunged.html
87 lines (77 loc) · 3.63 KB
/
hunged.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<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">
<title>hunged</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<link rel="stylesheet" href="./style.css">
</head>
<body class="container-sm">
<header id="tit_header">
<img id="logoAlura" class="col-sm-3" src="imgs/alura.png"/>
<h1 id="Header" class="alert alert-primary text-center container-sm">
Hunged!
</h1>
</header>
<section>
<article id="rugles">
<div class="container-sm reglas text-center">
<p>
<strong>1.</strong>No tildes, ni caracteres especiales; No numeros.
</p>
</div>
</article>
<article id="usadas" class="container-sm">
<strong>Letra fallada=</strong>
<input id="palabra_Usada" type="text" maxlength="20" disabled/>
</article>
</section>
<section id="cuerpoJuego" class="container-sm">
<section class="juego container-sm">
<div id="ProbarLetra">
<input type="text" maxlength="1" id="letra" onkeyup="mayus(this);" pattern="[A-Za-z]"/>
<button class="btn btn-success" id="calcularLetra">
Probar
</button>
</div>
<section id="sectionHunged">
<div id="hunged"></div>
<div class="text-center" id="#palabrAdivinar">
<p id="output"></p>
</div>
</section>
<div id="bnReiniciarRendr">
<div>
<a href="hunged.html">
<input type="submit" class="btn btn-primary" id="" value="Reiniciar"/>
</a>
</div>
<div>
<a href="index.html">
<button class="btn btn-secondary">Rendirse</button>
</a>
</div>
</div>
</section>
</section>
<footer id="footer" class="container-sm">
<a id="linkedin" class="container-sm-4" href="https://linkedin.com/in/rauljaimes826" target="_blank">
<img src="imgs/linkedin.png" width="20px" height="30px"/>
<input class="btn btn-info" type="submit" value="@RaulJaimes826"/>
</a>
<a id="git" class="container-sm-4" href="https://github.com/RaulAJaimes" target="_blank">
<img src="imgs/git.png" width="20px" height="30px">
<input class="btn btn-dark" type="submit" value="@RaulAJaimes"/>
</a>
<a id="face" class="container-sm-4" href="https://www.facebook.com/raul.jaimes" target="_blank">
<img src="imgs/facebook.png" width="20px" height="30px"/>
<input class="btn btn-primary" type="submit" value="@Raul.Jaimes" disabled/>
</a>
</footer>
<script src="ahorcado.js"></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8" crossorigin="anonymous"></script>
</body>
</html>