-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (20 loc) · 868 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head>
<title>Etch a Sketch</title>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel = "stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<h2>Etch-a-Sketch</h2>
<div id="container"> </div>
<div class="buttons">
<button id="white" value = "white" onclick="setColor(value)">White</button>
<button id="black" value = "black" onclick="setColor(value)">Black</button>
<button id="random" value = "random" onclick="setColor(value)">Random</button>
<button class="change-grid btn">Change grid size</button>
<button id="reset">Reset</button>
</div>
<script src="js/script.js"></script>
</body>
</html>