Spaces:
Running
Running
Create index.html
Browse files- index.html +35 -19
index.html
CHANGED
|
@@ -1,19 +1,35 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="es">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Buscador CIE-11</title>
|
| 7 |
+
<link rel="stylesheet" href="https://icdcdn.who.int/embeddedct/icd11ect-1.7.1.css">
|
| 8 |
+
<link rel="stylesheet" href="style.css">
|
| 9 |
+
</head>
|
| 10 |
+
<body>
|
| 11 |
+
<div class="container">
|
| 12 |
+
<img src="buho.png" alt="Buho Logo" class="banner-image">
|
| 13 |
+
<h1>Buscador de Enfermedades por CIE-11</h1>
|
| 14 |
+
|
| 15 |
+
<div class="search-container">
|
| 16 |
+
<input type="text" class="ctw-input" autocomplete="off" data-ctw-ino="1" placeholder="Escribe un t茅rmino de b煤squeda...">
|
| 17 |
+
<div class="ctw-window" data-ctw-ino="1"></div>
|
| 18 |
+
</div>
|
| 19 |
+
|
| 20 |
+
<div class="footer">
|
| 21 |
+
<p>Utilizando la Herramienta de Clasificaci贸n Embebida (ECT) de la OMS para CIE-11.</p>
|
| 22 |
+
</div>
|
| 23 |
+
</div>
|
| 24 |
+
|
| 25 |
+
<script src="icd11ect-1.7.1.js"></script>
|
| 26 |
+
<script>
|
| 27 |
+
const mySettings = {
|
| 28 |
+
apiServerUrl: "https://icd11restapi-developer-test.azurewebsites.net",
|
| 29 |
+
language: "es",
|
| 30 |
+
icdVersion: "2024-01"
|
| 31 |
+
};
|
| 32 |
+
ECT.Handler.configure(mySettings);
|
| 33 |
+
</script>
|
| 34 |
+
</body>
|
| 35 |
+
</html>
|