-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (27 loc) · 852 Bytes
/
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
<!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=>, initial-scale=1.0">
<link rel="stylesheet" href="estilo.css">
<title>Consultório odontológico</title>
</head>
<body>
<img src="dente.png" alt="Cosultório odontológico">
<h1>Consultório odontológico</h1>
<form>
<p>Paciente:
<input type="text" id="inPaciente" required autoFocus>
<input type="submit" value="Adicionar">
<input type="button" value="Urgência" id="btUrgencia">
<input type="button" value="Atender" id="btAtender">
</p>
</form>
<h3>Em atendimento:
<span class="fonte-azul"></span>
</h3>
<pre></pre>
<script src="index.js"></script>
</body>
</html>