File size: 788 Bytes
fb884cd
 
 
 
 
baaccf0
fb884cd
 
 
 
baaccf0
 
 
 
 
 
 
 
 
fb884cd
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html>
	<head>
		<meta charset="utf-8" />
		<meta name="viewport" content="width=device-width" />
		<title>Logo Minter Demo</title>
		<link rel="stylesheet" href="style.css" />
	</head>
	<body>
		<div class="card">
			<h1>Welcome to the Logo Minter Demo</h1>
            <p>Enter Your Prompt below to Make A Logo!</p>
                    <div id="prompt-form">
            <input type="text" id="logoPrompt" placeholder="Enter your logo prompt here" style="width: 70%; padding: 10px; margin: 10px 0;"/>
            <button onclick="generateLogo()" style="padding: 10px;">Generate Logo</button>
          </div>
          <div id="logoOutput" style="margin-top: 20px;">
            <!-- Generated logos will be displayed here -->
          </div>
		</div>
	</body>
</html>