-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (73 loc) · 2.49 KB
/
Copy pathindex.html
File metadata and controls
79 lines (73 loc) · 2.49 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AI Vision Studio</title>
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"
rel="stylesheet" />
</head>
<body>
<main class="app-container">
<header class="main-header">
<h1>AI Vision Studio</h1>
<p>Transform your imagination into high-quality imagery instantly.</p>
</header>
<div class="generator-box">
<div class="search-bar">
<input
type="text"
id="prompt"
placeholder="Describe what you want to see here..." />
<button id="generate">Generate</button>
</div>
<div class="settings-grid">
<div class="control-group">
<label for="aspect-ratio">Aspect Ratio</label>
<select id="aspect-ratio">
<option value="1:1">Square (1:1)</option>
<option value="16:9">Landscape (16:9)</option>
<option value="9:16">Portrait (9:16)</option>
</select>
</div>
<div class="control-group">
<label>Choose Style</label>
<div class="tags-container">
<button
class="style-btn"
data-style="photorealistic, 8k resolution, highly detailed">
📸 Realistic
</button>
<button
class="style-btn"
data-style="cyberpunk style, neon lighting, futuristic">
🌆 Cyberpunk
</button>
<button
class="style-btn"
data-style="anime style, vibrant colors, studio ghibli aesthetic">
🎨 Anime
</button>
</div>
</div>
</div>
</div>
<div class="output-box">
<div id="loader" class="loader"></div>
<div class="image-box">
<img id="result" alt="Your AI masterpiece will appear here" />
</div>
<button class="btn-download" id="download">Download Image</button>
</div>
<section class="gallery-box">
<h2>Your Saved Art</h2>
<div id="history-gallery" class="gallery-grid">
<!-- Loaded from JavaScript LocalStorage -->
</div>
</section>
</main>
<script src="script.js"></script>
</body>
</html>