-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (53 loc) · 1.64 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="author" content="Jhon Chiguay Nahuelhuen">
<link rel="stylesheet" href="./assets/css/style.css">
<title>Centro Médico Ñuñoa</title>
</head>
<body>
<div class="d-flex justify-content-center">
<h1 class="text-primary">¡CENTRO MÉDICO ÑUÑOA! </h1>
</div>
<hr />
<h3 id="tituloDental"></h3>
<table id="tabla"></table>
<h3 id="tituloTraumatologia"></h3>
<table id="tablaTraumatologia"></table>
<h3 id="tituloRadiologia"></h3>
<table id="tablaRadiologia"></table>
<hr />
<div class="text-center">
<h3 class="text-primary text-decoration-underline">
LISTADO DE CONSULTAS MÉDICAS DENTAL
</h3>
<p id="listadoConsultaDental"></p>
</div>
<hr />
<div class="text-center">
<h3 class="text-primary text-decoration-underline">
LISTADO DE PACIENTES ATENDIDOS EN LA CLÍNICA:
</h3>
<p id="listadoFinalPacientes"></p>
</div>
<hr />
<div class="text-center">
<h3 class="text-primary text-decoration-underline">
LISTADO DE PACIENTES EN CONSULTA DENTAL CON ISAPRE:
</h3>
<p id="pacientesIsapre"></p>
</div>
<hr />
<div class="text-center">
<h3 class="text-primary text-decoration-underline">
LISTADO DE PACIENTES EN TRAUMATOLOGÍA CON FONASA:
</h3>
<p id="listadoTraumaFonasa"></p>
</div>
<hr />
<script src="./assets/js/script.js"></script>
</body>
</html>