tile_pattern_gen/index.html
2026-08-08 16:10:51 +05:30

40 lines
796 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>
</head>
<body>
<div>
<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>
</div>
<div>
<label>
Color
<input id="color" type="color" value="#000000">
</label>
<label>
Brush
<input id="brush" type="number" min="1" value="32">
</label>
</div>
<canvas id="canvas"></canvas>
<script src="app.js"></script>
</body>
</html>