-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathahorcado.html
43 lines (39 loc) · 1.86 KB
/
ahorcado.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
<!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="icon" href="/img/ahorcado.png">
<title>Ahorcado</title>
<link href="/fontawesome-free-5.15.4-web/css/all.css" rel="stylesheet"> <!--load all styles -->
<link rel="stylesheet" href="css/normalice.css">
<link href="https://fonts.googleapis.com/css2?family=M+PLUS+1+Code:wght@100;400;700&family=Montserrat:wght@100;400;800&family=Poppins:wght@100;400;800&family=Staatliches&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/sweetAlert/sweetalert2.min.css">
</head>
<body>
<main class="contenedor">
<section class="juego">
<div style="text-align:center;">
<canvas id="ahorcado" height="700px" width="1200px"></canvas>
</div>
<div class="botones-juego">
<a href="ahorcado.html" class="btn btn-nuevo-juego" id="nuevo-juego">Nuevo juego</a>
<a href="index.html"" class="btn btn-desistir" id="desistir">Desistir</a>
</div>
</section>
</main>
<footer>
<p class="footer__texto">Julian Pachon - 2022</p>
<div class="botones-footer">
<a href="https://www.linkedin.com/in/julian-pachón-78ab9b193/" class="btn btn-linkedin"><i class="fab fa-linkedin"></i> Linkedin</a>
<a href="https://github.com/JulianTM" class="btn btn-github"><i class="fab fa-github"></i> Github</a>
</div>
</footer>
<script type="text/javascript" src="/js/ahorcado.js"></script>
<script type="text/javascript" src="/js/canvas.js"></script>
<script type="text/javascript" src="/js/palabras-secretas.js"></script>
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</body>
</html>