-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
68 lines (68 loc) · 2.96 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Image Generator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="sidebar">
<div class="input-section">
<button class="input-button active" data-input-type="text">From Text</button>
</div>
<textarea placeholder="Describe what you want the AI to draw" maxlength="1000"></textarea>
<div class="prompts">
<label for="negative-prompts">Negative Prompts</label>
<input type="text" id="negative-prompts" placeholder="Write what to avoid">
</div>
<div class="options">
<div class="option">
<label for="aspect-ratio">Aspect Ratio</label>
<select id="aspect-ratio">
<option value="1:1">1:1</option>
<option value="16:9">16:9</option>
</select>
</div>
<div class="option">
<label for="styles">Styles</label>
<select id="styles">
<option value="None">None</option>
<option value="digital-art">Digital Art</option>
<option value="anime">Anime</option>
<option value="cinematic">Cinematic</option>
</select>
</div>
</div>
<button class="generate-button">Generate</button>
</div>
<div class="main">
<div class="header">
<h1>AI IMAGE GENERATOR</h1>
<p>Just type a detailed description of what you envision, and watch as your imagination comes to life in seconds with breathtaking AI-generated images.</p>
<p>Try it now and see your creativity take flight!</p>
</div>
<div class="inspiration">
<h2>No inspiration? Try these:</h2>
<div class="inspiration-grid">
<div class="inspiration-item">
<img src="img1.png" alt="Inspiration Image 1">
<button class="use-prompt-button">Use Prompt</button>
</div>
<div class="inspiration-item">
<img src="img2.png" alt="Inspiration Image 2">
<button class="use-prompt-button">Use Prompt</button>
</div>
<div class="inspiration-item">
<img src="img3.png" alt="Inspiration Image 3">
<button class="use-prompt-button">Use Prompt</button>
</div>
</div>
</div>
<button class="inspire-me-button">Inspire Me</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>