-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogo4.html
More file actions
41 lines (33 loc) · 703 Bytes
/
logo4.html
File metadata and controls
41 lines (33 loc) · 703 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
33
34
35
36
37
38
39
40
41
<!doctype html>
<html><head><title>HTML 5 Logo test</title></head>
<script src="logo4.js"></script>
<style type="text/css">
@import url("logo1.css");
</style>
<body>
<div id="canvasandhistory">
<div id="canvaspart">
The canvas:<br />
<canvas id="drawhere" width="400" height="400">
Are canvases not enabled in your browser?
</canvas>
</div>
<div id="comhistpart">
History goes here:
<ul id="history">
</ul>
</div>
</div>
<div id="commandpart">
Commands:
<ul>
<li>pen_on</li>
<li>pen_off</li>
<li>move PIXELS</li>
<li>rotate DEGREES</li>
</ul>
Your bidding: <input type="search" name="cmd" id="cmd"/><br />
Angle: <span id="Angle">0</span>
</div>
</body>
</html>