Kean Edwards
Update index.html
baaccf0 verified
raw
history blame
No virus
788 Bytes
<!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>