ehristoforu commited on
Commit
9f17476
·
1 Parent(s): 9d9c4f9

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +69 -17
index.html CHANGED
@@ -1,19 +1,71 @@
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="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <style>
7
+ body {
8
+ font-family: Arial, sans-serif;
9
+ background-color: #333;
10
+ color: #fff;
11
+ margin: 0;
12
+ padding: 0;
13
+ text-align: center;
14
+ }
15
+
16
+ header {
17
+ background-color: #222;
18
+ padding: 20px 0;
19
+ }
20
+
21
+ h1 {
22
+ color: #fff;
23
+ }
24
+
25
+ .button {
26
+ display: inline-block;
27
+ background-color: #555;
28
+ color: #fff;
29
+ padding: 10px 20px;
30
+ text-decoration: none;
31
+ margin: 10px;
32
+ border-radius: 5px;
33
+ }
34
+
35
+ .button:hover {
36
+ background-color: #777;
37
+ }
38
+
39
+ footer {
40
+ background-color: #222;
41
+ padding: 10px 0;
42
+ position: absolute;
43
+ bottom: 0;
44
+ width: 100%;
45
+ }
46
+
47
+ footer p {
48
+ font-size: 14px;
49
+ color: #888;
50
+ }
51
+ </style>
52
+ </head>
53
+ <body>
54
+ <header>
55
+ <h1>Task AI</h1>
56
+ </header>
57
+ <a class="button" href="#" onclick="openLink('chat.html')">Chat</a>
58
+ <a class="button" href="#" onclick="openLink('image-geneator.html')">Image Creator</a>
59
+ <a class="button" href="#" onclick="openLink('https://tasks-ai-auto-subtitled-video-generator.hf.space')">Generate Subtitles</a>
60
+ <a class="button" href="#" onclick="openLink('text_to_speech.html')">Text to Speech</a>
61
+ <a class="button" href="#" onclick="openLink('speech_to_text.html')">Speech to Text</a>
62
+ <footer>
63
+ <p>©️ OpenSkyML</p>
64
+ </footer>
65
+ <script>
66
+ function openLink(url) {
67
+ window.location.href = url;
68
+ }
69
+ </script>
70
+ </body>
71
  </html>