justin-together commited on
Commit
4541d96
·
1 Parent(s): b3e2cba

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +4 -5
index.html CHANGED
@@ -6,16 +6,15 @@
6
  <title>My static Space</title>
7
  <link rel="stylesheet" href="style.css" />
8
  <script>
9
- document.location.href = 'https://api.together.xyz'
 
 
10
  </script>
11
  </head>
12
  <body>
13
  <div class="card">
14
- <h1>Welcome to your static Space!</h1>
15
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
16
  <p>
17
- Also don't forget to check the
18
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
19
  </p>
20
  </div>
21
  </body>
 
6
  <title>My static Space</title>
7
  <link rel="stylesheet" href="style.css" />
8
  <script>
9
+ function foo() {
10
+ window.open('https://api.together.xyz')
11
+ }
12
  </script>
13
  </head>
14
  <body>
15
  <div class="card">
 
 
16
  <p>
17
+ <a href="#" onClick=foo()>Test</a>
 
18
  </p>
19
  </div>
20
  </body>