HarleyCooper commited on
Commit
14d4a4b
·
verified ·
1 Parent(s): 0511d45

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +43 -17
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Deepsitecoder
3
- emoji: 🐢
4
- colorFrom: yellow
5
- colorTo: red
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: deepsitecoder
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: blue
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,45 @@
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 app</title>
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <meta charset="utf-8">
7
+ <style>
8
+ body {
9
+ display: flex;
10
+ justify-content: center;
11
+ align-items: center;
12
+ height: 100dvh;
13
+ font-family: "Arial", sans-serif;
14
+ text-align: center;
15
+ }
16
+ .arrow {
17
+ position: absolute;
18
+ bottom: 32px;
19
+ left: 0px;
20
+ width: 100px;
21
+ transform: rotate(30deg);
22
+ }
23
+ h1 {
24
+ font-size: 50px;
25
+ }
26
+ h1 span {
27
+ color: #acacac;
28
+ font-size: 32px;
29
+ }
30
+ @media screen and (max-width: 640px) {
31
+ .arrow {
32
+ display: none;
33
+ }
34
+ }
35
+ </style>
36
+ </head>
37
+ <body>
38
+ <h1>
39
+ <span>I'm ready to work,</span><br />
40
+ Ask me anything.
41
+ </h1>
42
+ <img src="https://enzostvs-deepsite.hf.space/arrow.svg" class="arrow" />
43
+ <script></script>
44
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - <a href="https://enzostvs-deepsite.hf.space?remix=HarleyCooper/deepsitecoder" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body>
45
  </html>