-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (45 loc) · 1.94 KB
/
index.html
File metadata and controls
47 lines (45 loc) · 1.94 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!--
Seguindo instruçoes da aula 01: https://youtu.be/rw35RtyY1IQ
-->
<!DOCTYPE html>
<html lang="pt_BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Happy</title>
<link rel="icon" href="./public/images/logo-icon.png">
<!-- Inclusão do link ao CSS aos 1:10:30 https://youtu.be/rw35RtyY1IQ -->
<link rel="stylesheet" href="./public/css/main.css">
<link rel="stylesheet" href="./public/css/page-landing.css">
<link rel="stylesheet" href="./public/css/animations.css">
<!-- Referencia para fontes no google 1:38:19 https://youtu.be/rw35RtyY1IQ-->
<link href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;1,800&display=swap" rel="stylesheet">
</head>
<body>
<!-- Explicação de adicionamento de Caixas 1:31:42 -->
<div id="page-landing">
<div id="container">
<head>
<img class ="animate-up"
id="logo"
src="./public/images/logo.svg"
alt="Logomarca de Happy"/>
<div class= "location animate-up">
<strong>Osasco</strong>
<p>São Paulo</p>
</div>
</head>
<main>
<h1 class ="animate-up">Leve felicidade para o mundo</h1>
<!-- Botão de Visita (Seta) -->
<section class="visit">
<p class ="animate-up">Visite orfanatos e mude o dia de muitas crianças</p>
<a class ="animate-up" href="#" title="Visite orfanatos">
<img src="./public/images/arrow.svg" alt="Ir para o mapa">
</a>
</section>
</main>
</div>
</div>
</body>
</html>