-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwordle.html
47 lines (43 loc) · 1.73 KB
/
wordle.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
<!DOCTYPE html>
<html lang="es">
<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/icono_W.png">
<title>Wordle Clone - Jugando</title>
<link rel="stylesheet" href="/css/reset.css">
<link rel="stylesheet" href="/css/main.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">
</head>
<body>
<header>
<h1>Wordle</h1>
</header>
<main class="contenedor contenido-canvas">
<section class="juego">
<div class="canvas">
<canvas id="ahorcado" width="330px" height="400px"></canvas>
</div>
<div class="contenedor-boton">
<div class="cajon">
<a class="boton" href="/index.html" target="_blank">Como jugar?</a>
</div>
<div class="cajon">
<a class="boton" href="/wordle.html">Nuevo Juego</a>
</div>
</div>
</section>
</main>
<footer>
<div class="contenido_footer">
<p>Desarrollado por Julian Pachon</p>
<p>2022</p>
<a href="https://www.linkedin.com/in/juliantm/" class="btn"><img src="/img/Linkedin.png" alt="Logo Linkedin"></a>
<a href="https://github.com/JulianTM" class="btn"><img src="/img/Github.png" alt="Logo Github"></a>
</div>
</footer>
<script type="text/javascript" src="/js/canvas.js"></script>
<script type="text/javascript" src="/js/palabra-secreta.js"></script>
</body>
</html>