File size: 1,278 Bytes
739d933
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2fd41e1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
    <link rel="stylesheet" href="style.css">
    <title>AnimeCreator</title>
</head>

<body>
    <div class="container">
        <h1>Create An Image</h1>
    </div>
    <div class="inputArea">
        <label id="lable" for="description"> Enter Description</label>
        <input type="text" name="description" id="promptText" placeholder="Give your image description">
        <button id="btn-gen" type="button">Generate Image</button>
        <button id="btn-clear" type="button"> Clear Text</button>

    </div>

    <div class="imageHolder">
        <img id='imageBox' src="" alt="Image" srcset="">
        <div id="loadingMessage" style="display: none;">Loading...</div>
    </div>
    <div class = "container">
        <button id= "download" style = "display:none;"><a id="btn-download" style="display: none;">Download Image</a></button>
    </div>
  
    <script src="script.js"></script>
</body>

</html>