-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (64 loc) · 2.02 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!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="shortcut icon"
href="./assets/images/eiffel-tower.png"
type="image/png"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
<title>Paris 2024</title>
</head>
<body>
<section id="section1">
<div class="main-text">
<p>Como bien sabes...</p>
<p>Un gran evento ha tenido lugar en Paris este año...</p>
</div>
<img id="jjoo" src="./assets/images/olympic_rings.png" alt="JJOO" />
<a id="button1" class="" href="#section2">HAZ CLICK PARA CONTINUAR</a>
</section>
<section id="section2">
<div class="main-text">
<p>Pero poco tiene que ver con los Juegos Olimpicos</p>
</div>
<a class="" href="#section3">HAZ CLICK PARA CONTINUAR</a>
</section>
<section id="section3">
<div class="main-text">
<p>Si te han enviado esta web es que estas invitado</p>
</div>
<a class="" href="#section4">HAZ CLICK PARA CONTINUAR</a>
</section>
<section id="section4">
<div>
<h1>¡A NUESTRA BODA!</h1>
<img id="confetti" src="./assets/images/confetti.gif" alt="confetti" />
</div>
<script
type="text/javascript"
async
src="https://tenor.com/embed.js"
></script>
<a class="" href="#section5">HAZ CLICK PARA CONTINUAR</a>
</section>
<section id="section5">
<h1>¡Save the date!</h1>
<h1>Sabado 30 de Agosto de 2025</h1>
<p class="additional-text">¡Nos vemos en Segovia!</p>
<footer>
<nav>
<a href="https://bodasergioybea.zegio.top/">¡Mas info aquí!</a>
</nav>
</footer>
</section>
<script type="module" src="./src/script.js"></script>
</body>
</html>