jtvidela commited on
Commit
04cac21
·
verified ·
1 Parent(s): 4eb72fb

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +34 -17
index.html CHANGED
@@ -1,19 +1,36 @@
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
+ <title>My Landing Page</title>
5
+ <style>
6
+ body {
7
+ font-family: Arial, sans-serif;
8
+ text-align: center;
9
+ padding: 50px;
10
+ }
11
+ a {
12
+ display: block;
13
+ margin: 10px;
14
+ padding: 10px;
15
+ background-color: #0078D4;
16
+ color: white;
17
+ text-decoration: none;
18
+ border-radius: 5px;
19
+ width: 200px;
20
+ margin-left: auto;
21
+ margin-right: auto;
22
+ }
23
+ a:hover {
24
+ background-color: #005BB5;
25
+ }
26
+ </style>
27
+ </head>
28
+ <body>
29
+ <h1>Welcome to My Spaces!</h1>
30
+ <p>Select a Space to explore:</p>
31
+ <a href="https://huggingface.co/spaces/jtvidela/signpost_assistant" target="_blank">Space 1</a>
32
+ <a href="https://huggingface.co/spaces/jtvidela/StoryCompass" target="_blank">Space 2</a>
33
+ <a href="https://huggingface.co/spaces/username/space3" target="_blank">Space 3</a>
34
+ </body>
35
  </html>
36
+