-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhorario.html
52 lines (42 loc) · 1.41 KB
/
horario.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" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<title>Horários de funcionamento</title>
</head>
<body>
<header>
<img src="logo.jpg" id="logo">
<nav>
<ul>
<li><a href="index.html">Página inicial</a></li>
<li><a href="horario.html">Horarios de funcionamento</a></li>
<li><a href="contato.html">Contato para locação</a></li>
</ul>
</nav>
</header>
<ul class="lista_horarios">
<li class="lista_bandas">
<h1>Terça-feira</h1>
<a href="megadeth.html"><img src="megadeth_horario.png" class="capa_horario"></a>
<p>Abertura às 21h</p>
</li>
<li class="lista_bandas">
<h1>Quarta-Feira</h1>
<p>Abertura às 21h</p>
<p>Programação: <a href="guns.html">Guns n' Roses</a></p>
</li>
<li class="lista_bandas">
<h1>Quarta-Feira</h1>
<p>Abertura às 21h</p>
<p>Programação: <a href="metallica.html">Metallica</a></p>
</li>
<li class="lista_bandas">
<h1>Quarta-Feira</h1>
<p>Abertura às 21h</p>
<p>Programação: <a href="https://en.wikipedia.org/wiki/Village_People">Village People</a></p>
</li>
</ul>
</body>
</html>