17 lines
557 B
HTML
17 lines
557 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Painter</title>
|
|
<link rel="stylesheet" href="/src/style.css" />
|
|
</head>
|
|
<body>
|
|
<input type="color" id="color-picker" value="#000000" />
|
|
<div id="countdown">You can place a pixel now</div>
|
|
<canvas id="canvas" width="500" height="500"></canvas>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|