ehristoforu commited on
Commit
57dcdc6
·
1 Parent(s): 8f6bd88

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +35 -18
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 lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>DreamDrop Bot</title>
6
+ <link rel="stylesheet" href="style.css">
7
+ </head>
8
+ <body>
9
+
10
+ <header class="header">
11
+ <h1>DreamDrop Bot</h1>
12
+ </header>
13
+
14
+ <main class="main">
15
+
16
+ <h2>Features:</h2>
17
+
18
+ <ul class="features-list">
19
+ <li>Generates images based on text input</li>
20
+ </ul>
21
+
22
+ <a href="#" target="_blank" class="button">Learn More!</a>
23
+
24
+ </main>
25
+
26
+ <footer class="footer">
27
+
28
+ <div class= "button-container">
29
+ <a href="#" target="_blank" class= "footer-button">Link One</a>
30
+ <a href="#" target="_blank" class= "footer-button">Link Two </a>
31
+ <a href="#" target="_blank" class= "footer-button">Link Three </a>
32
+ </div>
33
+ <p>Made with love by [Your name here]</p>
34
+
35
+
36
+ </body>