-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.21 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./styles.css" />
<script src="./script.js" defer></script>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Etch A Sketch</title>
</head>
<body>
<div class="container">
<h1 class="title">Etch-A-Sketch</h1>
<div class="buttons">
<button onclick="changeColor('black')" class="btn">Black</button>
<button onclick="changeColor('red')" class="btn">Red</button>
<button onclick="changeColor('random')" class="btn">
Unicorn Poop
</button>
<button onclick="changeColor('gray')" class="btn">Eraser</button>
<button onclick="resetBoard()" class="btn reset">Reset</button>
</div>
<div class="content">
<div class="board"></div>
</div>
<div class="mode">Mode: Not Drawing</div>
<div>
<input
type="text"
placeholder="Size of Board"
value="16"
onchange="changeSize(this.value)"
/>
<button class="set-size">Set Size</button>
</div>
</div>
</body>
</html>