-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.73 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
<!doctype html>
<html lang="pt-br">
<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="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Delius+Swash+Caps&family=Inter:wght@200;300;400;500;600&display=swap"
/>
<link
rel="shortcut icon"
href="./logo-papai-noel.webp"
type="image/x-icon"
/>
<link rel="stylesheet" href="style.css" />
<title>Feliz Natal</title>
</head>
<body>
<div class="arrow" onclick="displayAbout()" id="arrow">
<p>Ho Ho Ho</p>
<p>Tenho uma mensagem para você!</p>
<i id="animation" class="fas fa-sort-down"></i>
</div>
<div style="display: none" id="about">
<p>
Meu amor, neste Natal quero te lembrar o quanto você é especial
para mim. Que o brilho das luzes natalinas ilumine ainda mais o
sorriso que tanto amo, e que cada momento ao seu lado seja
repleto de paz, amor e felicidade. Obrigado por fazer parte da
minha vida e torná-la tão especial.
</p>
<p>Que nosso Natal seja doce, mágico e cheio de amor.</p>
<p>Eu te amo!</p>
</div>
<script src="script.js"></script>
<script
src="https://kit.fontawesome.com/6882db86fb.js"
crossorigin="anonymous"
></script>
</body>
</html>