JairoCesar commited on
Commit
34c7c0f
verified
1 Parent(s): a83e00f

Create index.html

Browse files
Files changed (1) hide show
  1. index.html +35 -19
index.html CHANGED
@@ -1,19 +1,35 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>