46 lines
1.2 KiB
HTML
46 lines
1.2 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Canvas Logo Generator</title>
|
||
|
<style>
|
||
|
body {
|
||
|
font-family: sans-serif;
|
||
|
padding: 20px;
|
||
|
background: #f0f0f0;
|
||
|
}
|
||
|
form {
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
canvas {
|
||
|
border: 1px solid #ccc;
|
||
|
display: block;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<form id="logoForm">
|
||
|
<label>Upper: <input type="text" id="upperText" name="Upper"></label>
|
||
|
<label>Lower: <input type="text" id="lowerText" name="Lower"></label>
|
||
|
<label>Background:
|
||
|
<select id="bgColor" name="Background">
|
||
|
<option value="#c0392b">Red</option>
|
||
|
<option value="#d35400">Orange</option>
|
||
|
<option value="#f39c12">Amber</option>
|
||
|
<option value="#27ae60">Green</option>
|
||
|
<option value="#16a085">Teal</option>
|
||
|
<option value="#2980b9">Blue</option>
|
||
|
<option value="#8e44ad">Purple</option>
|
||
|
<option value="#7f8c8d">Gray</option>
|
||
|
</select>
|
||
|
</label>
|
||
|
</form>
|
||
|
|
||
|
<canvas id="logoCanvas" width="80" height="80"></canvas>
|
||
|
<button id="downloadBtn">Download PNG</button>
|
||
|
|
||
|
<script src="script.js"></script>
|
||
|
</body>
|
||
|
</html>
|