-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 1.13 KB
/
Copy pathindex.html
File metadata and controls
32 lines (29 loc) · 1.13 KB
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Generador de Excusas - Tierra Media</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=IM+Fell+English+SC&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main class="page">
<h1 class="title">Generador de Excusas de la Tierra Media</h1>
<section class="panel" aria-label="Generador de excusas">
<div class="panel-left">
<img src="./LOTR-img.png" alt="Escena inspirada en El Señor de los Anillos" class="lotr-image">
</div>
<div class="panel-right">
<button id="generateBtn" class="generate-btn" type="button">Generar</button>
<p id="excuseText" class="excuse" aria-live="polite">
El destino aún no ha hablado. Pulsa "Generar".
</p>
</div>
</section>
</main>
<script src="script.js"></script>
</body>
</html>