Temuzin64 commited on
Commit
739d933
·
verified ·
1 Parent(s): 2fd41e1

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
+
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
8
+ integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
9
+ <link rel="stylesheet" href="style.css">
10
+ <title>AnimeCreator</title>
11
+ </head>
12
+
13
+ <body>
14
+ <div class="container">
15
+ <h1>Create An Image</h1>
16
+ </div>
17
+ <div class="inputArea">
18
+ <label id="lable" for="description"> Enter Description</label>
19
+ <input type="text" name="description" id="promptText" placeholder="Give your image description">
20
+ <button id="btn-gen" type="button">Generate Image</button>
21
+ <button id="btn-clear" type="button"> Clear Text</button>
22
+
23
+ </div>
24
+
25
+ <div class="imageHolder">
26
+ <img id='imageBox' src="" alt="Image" srcset="">
27
+ <div id="loadingMessage" style="display: none;">Loading...</div>
28
+ </div>
29
+ <div class = "container">
30
+ <button id= "download" style = "display:none;"><a id="btn-download" style="display: none;">Download Image</a></button>
31
+ </div>
32
+
33
+ <script src="script.js"></script>
34
+ </body>
35
+
36
  </html>