mirror of
https://github.com/10h30/odin-etch-a-sketch.git
synced 2026-07-11 10:45:59 +09:00
15 lines
390 B
HTML
15 lines
390 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Etch A Sketch</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<h1>Etch A Sketch</h1>
|
|
<button>Generate a new gird</button>
|
|
<div class="container"></div>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |