forked from jonwinton/scripted-event-handlers-lesson
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (19 loc) · 764 Bytes
/
index.html
File metadata and controls
20 lines (19 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<title>Let's Draw</title>
</head>
<body>
<button type="button" class="clear">Clear</button>
<!-- The canvas we're drawing on -->
<canvas width="300" height="300"></canvas>
<!-- Include Jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<!-- Include Tiny Turtle Library -->
<script type="text/javascript" src="./js/tiny-turtle/tiny-turtle.js"></script>
<!-- Don't mess with this file -->
<script type="text/javascript" src="./js/index.js"></script>
<!-- Write your JS in this file -->
<script type="text/javascript" src="./js/listeners.js"></script>
</body>
</html>