-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
33 lines (32 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="style.css" rel="stylesheet" >
<meta charset="utf-8" >
<title>Etch Your Sketch!</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
</head>
<body>
<div id="wrapper">
<div id="header">
<h1>Etch-a-sketch</h1>
</div>
<div id="content">
<div class="clear-board"><button>Clear Board</button></div>
<div id="instructions">
<p><strong>Instructions:</strong> Roll your mouse around the drawing board above. Every time your mouse enters the board it draws a new color!</p>
<p>Draw over the same square a few times and it gets darker each time.</p>
<p><strong>Pro tip:</strong> The header color is the next color your drawing will be!</p>
<p>Hit the "clear board" button to start a fresh board. A window will pop up asking how many pixels wide you want the board to be. You probably don't want to go too far above 100 or it will be slow!</p>
<p><strong>Have fun!</strong></p>
</div>
</div>
<div id="footer">
<ul>
<li>Program built by <a href="http://katemcfaul.com">KateMcFaul.com</li>
</ul>
</div>
</div>
<script src="scripts.js"></script>
</body>
</html>