-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturtle.html
More file actions
35 lines (35 loc) · 1.11 KB
/
turtle.html
File metadata and controls
35 lines (35 loc) · 1.11 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>MyTurtle - Arena</title>
<link rel="stylesheet" href="./css/styles.css">
<style>
body {
background: #f2f2f2;
font-family: 'Hiragino Sans GB', "Microsoft Yahei", "微软雅黑", sans-serif
}
body {
font: 14px 'PingFang SC', Helvetica, sans-serif, Raleway, HNL, 'Noto Sans CJK TC', 'Microsoft JhengHei'
}
</style>
</head>
<body>
<div class="window mac">
<div class="title-bar">
<div class="close"></div>
<div class="minimize"></div>
<!-- <div class="maximize"></div> -->
<div class="zoom"></div>
<div id="id-mac-title" class="title">MyTurtle - Arena</div>
</div>
<div class="page">
<section class="lin-canvas-container">
<canvas style="border: 0px black solid;" id="id-canvas" width="600" height="450"></canvas>
</section>
</div>
</div>
<script src="lib/turtle.js"></script>
<script src="js/myTurtle.js"></script>
</body>
</html>