-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patholinda.html
55 lines (55 loc) · 2.07 KB
/
olinda.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cinema em Olinda</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
</head>
<body>
<header>
<h1>Cinema em Olinda</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="recife.html">Cinema em Recife</a>
<a href="olinda.html">Cinema em Olinda</a>
</nav>
<div class="container">
<div class="card">
<img src="" alt="">
<h2>O Rei Leão</h2>
<p>Horários de Exibição:</p>
<ul>
<li id="horario-semana">Segunda a sexta: 14:00</li>
<li id="horario-fim-de-semana">Sábado e domingo: 13:00</li>
</ul>
<button>Comprar Ingresso</button>
<a href="https://www.youtube.com/watch?v=WBDAsucUg58" target="_blank"><button class="trailer-button">Trailer</button></a>
</div>
<div class="card">
<img src="" alt="">
<h2>Vingadores: Ultimato</h2>
<p>Horários de Exibição:</p>
<ul>
<li id="horario-semana">Segunda a sexta: 15:00</li>
<li id="horario-fim-de-semana">Sábado e domingo: 14:00</li>
</ul>
<button>Comprar Ingresso</button>
<a href="https://www.youtube.com/watch?v=g6ng8iy-l0U" target="_blank"><button class="trailer-button">Trailer</button></a>
</div>
<div class="card">
<img src="" alt="">
<h2>Jumanji: Bem-Vindo à Selva</h2>
<p>Horários de Exibição:</p>
<ul>
<li id="horario-semana">Segunda a sexta: 14:30</li>
<li id="horario-fim-de-semana">Sábado e domingo: 13:30</li>
</ul>
<button>Comprar Ingresso</button>
<a href="https://www.youtube.com/watch?v=tnpV3q8Q3gg" target="_blank"><button class="trailer-button">Trailer</button></a>
</div>
</div>
</body>
</html>