Aohanah commited on
Commit
dc9c504
1 Parent(s): 8c9d3d3

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +38 -16
index.html CHANGED
@@ -1,19 +1,41 @@
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>
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width" />
6
+ <title>Multi-Glau</title>
7
+ <style>
8
+ body {
9
+ text-align: center;
10
+ }
11
+ .card {
12
+ margin: 20px auto;
13
+ padding: 20px;
14
+ border: 1px solid #ccc;
15
+ border-radius: 5px;
16
+ max-width: 400px;
17
+ }
18
+ .btn {
19
+ display: inline-block;
20
+ margin: 10px;
21
+ padding: 10px 20px;
22
+ background-color: #007bff;
23
+ color: #fff;
24
+ text-decoration: none;
25
+ border-radius: 5px;
26
+ }
27
+ .btn:hover {
28
+ background-color: #0056b3;
29
+ }
30
+ </style>
31
+ </head>
32
+ <body>
33
+ <div class="card">
34
+ <h1>Welcome to your static Space!</h1>
35
+ <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
36
+ <p>Also don't forget to check the <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.</p>
37
+ <a href="#screening" class="btn">Screening module</a>
38
+ <a href="#pre-diagnosis" class="btn">Pre-Diagnosis Module</a>
39
+ </div>
40
+ </body>
41
  </html>