-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (31 loc) · 1.01 KB
/
Copy pathindex.html
File metadata and controls
45 lines (31 loc) · 1.01 KB
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
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="assets/FSAtitle.png" />
<link rel="stylesheet" href="/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FSA-IG</title>
</head>
<body>
<main>
<h1> Full Stack Academy Image Generator</h1>
<img id="FSAIGh1" src="assets/FSAtitle.png" href= "assets/FSAtitle.png" alt="FSA" />
<div id="result">
Image Will Appear Here
</div>
<form>
<label for="prompt">Enter Prompt Here: </label>
<textarea name="prompt" maxlength="114" style="resize: none;"></textarea>
<button type="submit">Generate</button>
</form>
<div id="pgencont">Previously Generated:
<div id="pgen">Previously Generated Image</div>
<div id="pgen2">Previously Generated Image</div>
<div id="pgen3">Previously Generated Image</div>
</div>
</main>
<div id="root"></div>
<script type="module" src="/main.js"></script>
</body>
</html>