-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (22 loc) · 765 Bytes
/
index.html
File metadata and controls
26 lines (22 loc) · 765 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>AI Coloring Sheet Generator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>🖍️ Coloring Sheet Generator</h1>
<!-- Text Input -->
<textarea id="prompt" placeholder="Describe your coloring sheet (e.g., 'A lion with a floral mane')"></textarea>
<!-- Generate Button -->
<button onclick="generateImage()">Generate</button>
<!-- Output -->
<div id="loading" style="display: none;">Generating...</div>
<div id="output"></div>
<!-- Print Button (hidden initially) -->
<button id="printBtn" style="display: none;" onclick="window.print()">Print Sheet</button>
</div>
<script src="script.js"></script>
</body>
</html>