-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (25 loc) · 775 Bytes
/
index.html
File metadata and controls
33 lines (25 loc) · 775 Bytes
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>
<head>
<title>Etch-A-Sketch</title>
<link rel="stylesheet" type="text/css" href="reset.css">
<link rel="stylesheet" type="text/css" href="stylesheet.css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<center>
<button id="option2" > Reset grid</button>
<button id="option1" > Start new grid</button>
<button id="option3" > Eating grid</button>
<button id="option4" > Clearing grid</button>
<button id="option5" > Dancing grid</button>
<button id="option6" > Fading grid</button>
<button id="option7" > Coloring grid</button>
<br>
</center>
<center>
<div id="container"> </div>
</center>
</body>
</html>