-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (73 loc) · 3.05 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
71
72
73
74
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta https-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/style/reset.css">
<link rel="stylesheet" href="./assets/style/style.css">
<script src="https://kit.fontawesome.com/1ab94d0eba.js" crossorigin="anonymous"></script>
<title>A viagem de Chihiro</title>
</head>
<body>
<header>
<nav>
<div class="topo">
<div class="logo">
<a href="https://studioghibli.com.br/">
<img src="assets/img/logo.svg" alt="Logo">
</a>
</div>
<!-- icones / links -->
<div>
<ul>
<li>
<a href="https://www.facebook.com/StudioGhibliBrasil/" target="_blank"><i class="fab fa-facebook-f"></i></a>
</li>
<!-- target="_blank" -> abra o link em uma aba adicional -->
<li>
<a href="https://www.instagram.com/ghiblibrasil/" target="_blank"><i class="fab fa-instagram"></i></a>
</li>
<li>
<a href="https://twitter.com/GhibliBrasil" target="_blank"><i class="fab fa-twitter"></i></a>
</li>
<li>
<a href="https://www.youtube.com/c/StudioghibliBrasil/featured" target="_blank"><i class="fab fa-youtube"></i></a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Conteúdo Principal -->
<main>
<div class="container">
<div class="texto-botoes">
<div class="texto">
<p>HAYAO MIYAZAKI</p>
<H2>A VIAGEM DE CHIHIRO</H2>
<span>Chihiro chega a um mundo mágico domindo por
uma bruxa. Aqueles que a desobedecem são transformados em animais.
</span>
</div>
<div class="botoes">
<button class="play">
<i class="fas fa-play"> </i>
<a href="https://www.netflix.com/br/title/60023642" target="_blank">
<p>ASSITIR AGORA</p>
</a>
</button>
<button class="trailer">
<a href="https://www.youtube.com/watch?v=SgZI655GgHk&t=13s" target="_blank"> <p>
ASSITIR TRAILER
</p> </a>
</button>
</div>
</div>
<div class="ilustracao">
<img src="assets/img/ilustracao.png" alt="Imagem principal">
</div>
</div>
</main>
</body>
</html>