-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhorario.html
More file actions
145 lines (137 loc) · 5.73 KB
/
horario.html
File metadata and controls
145 lines (137 loc) · 5.73 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!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>Horário de Atendimento</title>
<link rel="stylesheet" href="base.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet">
<link rel="shortcut icon" type="imagex/png" href="lotus.ico">
</head>
<body>
<div class="wrapper">
<div class="menu">
<img src="images/logo.png" width="350" style="margin: 25px;">
<div class="aba"><a href="homepage.html">Home Page</a></div>
<div class="aba"><a href="sobrenos.html">Sobre a Clínica</a></div>
<div class="aba"><a href="horario.html">Horário de Atendimento</a></div>
<div class="aba"><a href="contato.html">Contato</a></div>
</div>
<div class="main">
<div class="header">
<div class="logo">
<div class="faixa">
<img src="images/horario.png" width="65">
</div>
</div>
</div>
<div class="content">
<h1 style="text-align: center;">Horário de Atendimento</h1>
<hr style="border: 1px solid #404031;">
<br>
<table align="center" cellpadding="10">
<thead>
<tr>
<th colspan="4">Nosso Horário de Atendimento</th>
</tr>
<tr>
<th>Serviços</th>
<th>Segunda a Sexta</th>
<th>Sábados</th>
<th>Feriados</th>
</tr>
</thead>
<tbody>
<tr>
<td>Botox e Preenchimentos</td>
<td>08h - 18h</td>
<td>08h - 14h</td>
<td>08h - 14h</td>
</tr>
<tr>
<td>Microdermoabrasão</td>
<td>08h - 18h</td>
<td>08h - 14h</td>
<td>08h - 14h</td>
</tr>
<tr>
<td>Laser e Luz Pulsada Intensa (IPL)</td>
<td>08h - 18h</td>
<td>08h - 14h</td>
<td>08h - 14h</td>
</tr>
<tr>
<td>Massagens Terapêuticas</td>
<td>08h - 18h</td>
<td>08h - 14h</td>
<td>08h - 14h</td>
</tr>
<tr>
<td>Terapia de Retinol</td>
<td>08h - 18h</td>
<td>08h - 14h</td>
<td>-</td>
</tr>
<tr>
<td>Terapias com Células-Tronco</td>
<td>08h - 18h</td>
<td>08h - 14h</td>
<td>-</td>
</tr>
<tr>
<td>Consultas Nutricionais</td>
<td>08h - 19h</td>
<td>08h - 14h</td>
<td>08h - 14h</td>
</tr>
<tr>
<td>Terapias de Relaxamento</td>
<td>08h - 19h</td>
<td>08h - 14h</td>
<td>-</td>
</tr>
<tr>
<td>Sessões de Mindfulness e Meditação</td>
<td>08h - 19h</td>
<td>08h - 14h</td>
<td>-</td>
</tr>
<tr>
<td>Avaliações Médicas</td>
<td>08h - 19h</td>
<td>08h - 14h</td>
<td>-</td>
</tr>
<tr>
<td>Escleroterapia</td>
<td>08h - 18h</td>
<td>-</td>
<td>-</td>
</tr>
<tr>
<td>Tratamentos com Antioxidantes</td>
<td>08h - 19h</td>
<td>08h - 14h</td>
<td>08h - 14h</td>
</tr>
</tbody>
</table>
</div>
<div class="footer">
<div class="geral">
<p>Brasil</p>
<p>Termos de Política</p>
<p>Termos de Privacidade</p>
</div>
<div class="local">
<p>© The White Lotus. Todos os direitos reservados. White Lotus Resort Ltda - CNPJ: 81.739.726/0001-42</p>
<p>3900 Wailea Alanui Dr, Kihei, HI 96753, Estados Unidos</p>
</div>
</div>
</div>
</div>
</body>
</html>