-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (40 loc) · 1.64 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 property="og:type" content="website" />
<meta property="og:title" content="Your Next Movie - Escolha seu filme" />
<meta property="og:description" content="Não sabe o que assistir? Encontre agora seu próximo filme!" />
<meta property="og:image" content="https://your-next-movie.netlify.app/assets/preview/preview.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:locale" content="pt_BR" />
<meta property="og:url" content="your-next-movie.netlify.app" />
<meta property="og:site_name" content="Your Next Movie" />
<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="stylesheet" href="./css/styles.css">
<link rel="shortcut icon" href="./assets/favico/favicon.ico" type="image/x-icon">
<script defer type="module" src="./js/main.js"></script>
<title>Your Next Movie</title>
</head>
<body>
<main>
<section class="content">
<div>
<img class="random-movie-image" src="./assets/shuffle.svg" alt="">
<h1 class="title">Não sabe o que assistir?</h1>
<button class="search-movie-button" type="button">
<img class="search-movie-button-image" src="./assets/shuffle.svg" alt=""> Encontrar filme
</button>
<p class="click-here">
Clique em "Encontrar filme" que traremos<br>
informações de algum filme para você assistir hoje
</p>
</div>
<div class="movie">
</div>
</section>
</main>
</body>
</html>