-
Notifications
You must be signed in to change notification settings - Fork 0
/
desafio02_03working.html
158 lines (113 loc) · 5.79 KB
/
desafio02_03working.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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
<!--
Theme Name: Desafio 02 - DIO.me
Theme URI: https://github.com/marceldonin/Formacao-HTML-Web-Developer
Author: Marcel Donin
Author URI: https://github.com/marceldonin
Description: Criando seu Primeiro Site Completo com HTML
Data: Novembro / 2023
Version: 1.0
--------------------------------------------
-->
<!DOCTYPE html>
<html lang="pt-br">
<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>Template - Utilizar como modelo</title>
<link rel="stylesheet" href="desafio02.css">
</head>
<body>
<div class="wrapper">
<div class="menu">
<!-- Aqui vai o seu menu -->
<img src="desafio02_logomenu.png" alt="Cabeçalho da Pagina Principal - Home">
<ul>
<a href="desafio02_01home.html">Home</a></br></br>
<a href="desafio02_02about.html">Sobre</a></br></br>
<a href="desafio02_03working.html">Atendimento</a></br></br>
<a href="desafio02_04Contact.html">Contato</a></br></br>
</ul>
</div>
<div class="main">
<div class="header">
<!-- Aqui vai o seu header -->
<img height="100%" width="100%" src="desafio02_07workingv2.png" alt="Cabeçalho da Pagina Principal - Home">
</div>
<div class="content">
<!-- Aqui vai o seu conteúdo -->
<div class="flex1">
<div class="box5">
<table class="tabela" summary="Esta tabela informa os horários de atendimento de nossos profissionais na clinica." border="5" width="10px" cellspacing="05" cellpadding="15" align="center">
<thead class="titulotabela">
<tr align="center">
<th title="Serviços">Profissionais</th>
<th title="Dia da semana">Segunda a Sexta</th>
<th title="Final de Semana">Sábado</th>
<th title="Feriados">Feriados</th>
</tr>
</thead>
<tbody>
<tr align="center">
<td>Clínico Geral</td>
<td>08h - 19h</td>
<td>08h - 14h</td>
<td>08h - 11h</td>
</tr>
<tr align="center">
<td>Psicologo</td>
<td>08h - 19h</td>
<td>08h - 14h</td>
<td>08h - 11h</td>
</tr>
<tr align="center">
<td>Pediatria</td>
<td>08h - 19h</td>
<td>08h - 11h</td>
<td> - </td>
</tr>
<tr align="center">
<td>Psiquiatra</td>
<td>08h - 19h</td>
<td>08h - 11h</td>
<td> - </td>
</tr>
</tbody>
</table>
</div>
<div class="box5">
<form action="#" method="get" autocomplete="off">
<caption class="inputz">AGENDE SUA CONSULTA</caption></br></br>
<fieldset>
<legend>Nome</legend>
<input type="text"></br>
</fieldset>
<fieldset>
<legend>E-mail</legend>
<input type="email"></br>
</fieldset>
<fieldset>
<legend>Assunto</legend>
<input type="text"></br>
</fieldset>
<fieldset>
<legend>Mensagem</legend>
<textarea name="message" cols="30" rows="10"></textarea></br>
</fieldset>
<button type="reset">Limpar</button>
<button type="submit">Enviar Formulário</button>
</form>
</div>
</div>
</div>
<div class="footer">
<!-- Aqui vai o seu rodapé -->
<img height="100%" width="100%" src="desafio02_Footer01.png" alt="Rodapé da Pagina Principal - Home">
</div>
</div>
</div>
<!--ÁREA DOS SCRIPTS
<script type="text/javascript" src="script.js"></script>
-->
</body>
</html>