-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserie.html
65 lines (56 loc) · 2.21 KB
/
serie.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Detalhes do Filme - Arremessando Alto</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
background-color: #f8f9fa; /* Cor de fundo clara */
}
.movie-details {
margin-top: 20px;
padding: 20px;
background-color: #343a40; /* Cor de fundo escura */
color: white; /* Cor do texto em branco */
border-radius: 5px; /* Bordas arredondadas */
}
.movie-image {
max-width: 100%; /* Imagem responsiva */
border-radius: 5px;
}
</style>
</head>
<body>
<!-- Cabeçalho com logo e menu -->
<header class="bg-dark text-white p-3">
<div class="container d-flex justify-content-between">
<h1>Detalhes do Filme</h1>
<nav>
<a href="index.html" class="text-white mx-2">Início</a>
<a href="explorer.html" class="text-white mx-2">Explorar</a>
<a href="serie.html" class="text-white mx-2">Série</a>
</nav>
</div>
</header>
<section class="container movie-details">
<h2>Nome do Filme: Arremessando Alto</h2>
<img src="https://pbs.twimg.com/media/FU0Ml1_XEAAKNl6.jpg" alt="Imagem do Filme Arremessando Alto" class="movie-image">
<h4>Descrição:</h4>
<p>Arremessando Alto é uma comédia romântica que segue a jornada de um jovem que sonha em se tornar um grande jogador de basquete enquanto navega por relacionamentos e desafios pessoais.</p>
<h4>Plataforma de Exibição:</h4>
<p>Netflix</p>
<h4>Gênero:</h4>
<p>Comédia, Romance, Esporte</p>
<h4>Ano de Lançamento:</h4>
<p>2021</p>
<h4>Duracão:</h4>
<p>120 minutos</p>
<h4>Favoritar:</h4>
<button class="btn btn-primary">Adicionar aos Favoritos</button>
</section>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="scripts.js"></script>
</body>
</html>