-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.22 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Afn Cinema</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Afn Cinema</h1>
</header>
<nav>
<ul>
<a href="recife.html">Cinema em Recife</a>
<a href="olinda.html">Cinema em Olinda</a>
</ul>
</nav>
<div class="container">
<section id="recife" class="cinema">
<h2>Cinema em Recife</h2>
<p>Confira os filmes em cartaz e compre seus ingressos online!</p>
<p>Endereço: Av. Recife, 123 - Recife</p>
<p>Telefone: (81) 1234-5678</p>
<!-- Aqui você pode adicionar os filmes em cartaz e os horários disponíveis -->
</section>
<section id="olinda" class="cinema">
<h2>Cinema em Olinda</h2>
<p>Confira os filmes em cartaz e compre seus ingressos online!</p>
<p>Endereço: Rua Olinda, 456 - Olinda</p>
<p>Telefone: (81) 8765-4321</p>
<!-- Aqui você pode adicionar os filmes em cartaz e os horários disponíveis -->
</section>
</div>
</body>
</html>