-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (26 loc) · 877 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
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Etch-a-Sketch</title>
</head>
<body>
<h1>Etch-a-Sketch</h1>
<p class="coloredSquares">You painted <b>0</b> squares</p>
<div class="container"></div>
<div class="radioBtn">
<div>
<label for="colorPicker">Pick color:</label>
<input type="color" id="colorPicker">
</div>
<input name="color" type="checkbox" id="randomColor" value="Random">
<label for="randomColor">Random Color</label>
</div>
<button class="reset">Reset</button>
<button class="changeGrid">Change grid size</button>
<script src="app.js"></script>
</body>
</html>