-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhorário.html
93 lines (90 loc) · 3.09 KB
/
horário.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meu Bichinho: Horário</title>
<link rel="stylesheet" href="base.css">
</head>
<body>
<style>
table tr:nth-child(even) {
background-color: rgb(209, 133, 144);
}
table td:hover {
background-color: rgb(219, 70, 120);
}
</style>
<div class="wrapper">
<div class="menu">
<img src="Algodão doce.png">
<br>
<h1>Menu:</h1>
<ul>
<li><a href="Início.html">Página Inicial</a></li>
<br>
<li><a href="sobre.html">Sobre a clínica</a></li>
<br>
<li><a href="horário.html">Horário de atendimento</a></li>
<br>
<li><a href="contato.html">Informações de contato</a></li>
</ul>
</div>
<div class="main">
<div class="header">
<img src="Horário.png">
</div>
<div class="content">
<table border="1" allign="center" cellpadding="25">
<tr>
<th><strong>Serviços</strong></th>
<th><strong>Segunda a sexta</strong></th>
<th><strong>Sábados</strong></th>
<th><strong>Domingos e feriados</strong></th>
</tr>
<tr>
<td>Petshop</td>
<td>7h-19h</td>
<td>7h-18:30</td>
<td>7h-11h</td>
</tr>
<tr>
<td>Banho e tosa</td>
<td>7h-19h</td>
<td>7h-18:30</td>
<td>-</td>
</tr>
<tr>
<td>Consultas</td>
<td>7h-19h</td>
<td>7h-18:30</td>
<td>7h-11h</td>
</tr>
<tr>
<td>Castração</td>
<td>Terça-feira (7h-19h)</td>
<td>-</td>
<td>-</td>
</tr>
<tr>
<td>Cirurgia</td>
<td>Quinta-feira (11h-19h)</td>
<td>-</td>
<td>-</td>
</tr>
<tr>
<td>Atendimento a domicílio</td>
<td>7h-20h</td>
<td>7h-19h</td>
<td>-</td>
</tr>
</table>
</div>
<div class="footer">
<img src="Footer.png">
</div>
</div>
</div>
</body>
</html>