tile_pattern_gen/index.html
2026-08-08 16:33:53 +05:30

42 lines
918 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tile Painter</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<canvas id="canvas"></canvas>
<div class="controls">
<label>
Width
<input id="width" type="number" value="512" min="1">
</label>
<label>
Height
<input id="height" type="number" value="512" min="1">
</label>
<button id="resize">Resize</button>
<label>
Color
<input id="color" type="color" value="#000000">
</label>
<label>
Brush
<input id="brush" type="number" min="1" value="32">
</label>
<button id="download">Download</button>
</div>
<script src="app.js"></script>
</body>
</html>