-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
52 lines (45 loc) · 2.38 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Martel+Sans:wght@600&family=Poppins:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="assets/images/favicon.ico" type="image/x-icon"> <!-- Define o ícone do site (favicon) -->
<link rel="stylesheet" href="style.css">
<title>CinemaFlix</title>
</head>
<body>
<header> <!-- Cabeçalho do site -->
<div class="logo-container">
<img src="assets/images/logo.png" alt="Logo">
<h1>CinemaFlix</h1>
</div>
<nav>
<a href="./src/pages/filmes/index.html">Filmes</a>
<a href="#" class="alertButton" data-message="Em breve as melhores séries 🎥">Séries</a>
<a href="#" class="alertButton" data-message="Animes incríveis estarão disponíveis 🎥">Animes</a>
<a href="#" class="alertButton" data-message="Documentários fascinantes em breve 🎥">Documentários</a>
</nav>
<div class="auth-buttons">
<button class="btn btn-white" id="loginButton" data-message="Ainda não estamos ativos 😞">Entrar</button>
<button class="btn btn-red" id="signupButton" data-message="Em breve você poderá se cadastrar 😞">Cadastrar</button>
</div>
</header>
<main class="main"> <!-- Conteúdo principal -->
<div class="hero"> <!-- Texto principal e call-to-action -->
<h1>Maratonas Sem Fim, Emoções Inigualáveis!</h1>
<p>Entre no universo do entretenimento sem limites e viva aventuras incríveis.</p>
<p>Inscreva-se agora e seja o primeiro a receber novidades e surpresas exclusivas no seu e-mail!</p>
<div class="hero-buttons">
<input type="text" id="search-input" placeholder="E-mail">
<button class="btn btn-red" id="newsletterButton" data-message="Ainda não estamos recebendo e-mails 📥">Vamos lá ></button>
</div>
</div>
</main>
<footer>
<!-- O JavaScript insere o ano atual automaticamente -->
<p>© <span id="year"></span> <a href="https://www.linkedin.com/in/agleice-sousa">Agleice Sousa</a>. Todos os direitos reservados.</p>
</footer>
<script src="script.js"></script>
</body>
</html>