-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (29 loc) · 987 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="public/AI4.svg " />
<link
href="https://unpkg.com/blueprint-css@3.1.3/dist/blueprint.min.css"
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
</head>
<body>
<main>
<h1>AI Photo Generator</h1>
<div bp="grid 4">
<div>
<form>
<label for="prompt">Prompt</label>
<textarea name="prompt" maxlength="160"></textarea>
<button type="submit" id="Dream">Dream</button>
</form>
</div>
<div id="result">Image will appear here</div>
</div>
</main>
<script type="module" src="/main.js"></script>
</body>
</html>