ImageGen / index.html
Temuzin64's picture
Update index.html
739d933 verified
raw
history blame
1.28 kB
<!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>