-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (38 loc) · 1.19 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
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<body>
<head>
<meta charset="utf-8">
<title>Etch-A-Sketch</title>
<meta name="viewport" content="width=device-width" , initial-scale="1.0">
<link rel="stylesheet" href="main.css">
</head>
<h2>Etch-A-Sketch</h2>
<div id="sketch">
<button id="1" class="new-button">CHANGE GRID SIZE</button>
<button id="2" class="new-button">CLEAR GRID</button>
<button id="3" class="new-button">RANDOM COLOURS</button>
<button id="4" class="new-button">DEFAULT COLOUR</button>
</div>
<div id="others">
<p>Primary Colours:</p>
<button id="5" class="red">RED</button>
<button id="6" class="yellow">YELLOW</button>
<button id="7" class="blue">BLUE</button>
</div>
<div id="others">
<p>Secondary Colours:</p>
<button id="8" class="green">GREEN</button>
<button id="9" class="orange">ORANGE</button>
<button id="10" class="purple">PURPLE</button>
</div>
</div>
<div id="container">
<div id="container1">
</div>
<div id="container2">
</div>
</div>
<script src="main.js"></script>
</body>
</html>