-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (26 loc) · 996 Bytes
/
index.html
File metadata and controls
29 lines (26 loc) · 996 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
<!DOCTYPE HTML>
<html>
<head>
<title>Etch-n-Sketch</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="js/script.js"></script>
<link type="text/css" rel="stylesheet" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/reset.css">
</head>
<body>
<div id ="main">
<h1 class="header">Etch-n-Sketch</h1><p class="border"><input id="borders" type="checkbox" name="borders"/>show grid</p>
<div class="screen">
<div id="container"></div>
</div>
<div id="buttons">
<input id="new" class="button" type="button" value="New"/>
<input id="normal" class="button" type="button" value="Black"/>
<input id="color" class ="button" type="button" value="Color"/>
<input id="gradient" class="button" type="button" value="Gradient"/>
<input id="random" class="button" type="button" value="Random"/>
<input id="reset" class="button" type="button" value="Reset" />
</div>
</div>
</body>
</html>