-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (47 loc) · 2.56 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!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" />
<link rel="stylesheet" href="./style/reset.css" />
<link rel="stylesheet" href="./style/style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="shortcut icon" href="./assets/favicon.ico" type="image/x-icon" />
<link href="https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&display=swap" rel="stylesheet" />
<script src="https://cdn.tailwindcss.com"></script>
<title>Juego del Ahorcado</title>
</head>
<body>
<img src="./assets/images/fondo.jpg" alt="fondo"
class="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-screen max-h-screen md:block hidden" />
<div class="flex md:h-screen h-96 justify-center md:items-center items-start md:mt-0 mt-5 absolute inset-0 border">
<div class="relative md:h-96 h-auto md:w-auto w-96 border border-dashed rounded rounded-xl md:border-none mx-5">
<div class="">
<image src="./assets/images/portada.webp" alt="portada"
class="transition duration-1000 ease-in md:w-full w-96 rounded rounded-xl" />
</div>
<div class="absolute md:bottom-20 bottom-14 md:left-36 left-20">
<a href="./juego.html"
class="btn md:text-6xl text-4xl bg-green-500 hover:bg-green-400 text-white font-bold hover:text-white py-2 px-4 border border-2 border-green-500 hover:border-transparent rounded amatic-font">
Jugar </a>
</div>
</div>
</div>
<footer class="w-full text-center">
<div class="absolute inset-x-0 bottom-0">
<div class="flex flex-row space-x-2 text-gray-800 text-center p-4 justify-center">
<span> Made with </span>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled icon-tabler icon-tabler-heart"
width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="#EF4444" fill="none"
stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M19.5 13.572l-7.5 7.428-7.5-7.428m0 0a5 5 0 1 1 7.5-6.566 5 5 0 1 1 7.5 6.572" />
</svg>
<span> by oktubr3 </span>
</div>
</div>
</footer>
</body>
</html>