Spaces:
Running
Running
Update index.html
Browse files- index.html +35 -18
index.html
CHANGED
@@ -1,19 +1,36 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>
|