-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (40 loc) · 874 Bytes
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>a</title>
<!--
<script src="js/lib.js"></script>-->
<style>
*{
margin: 0px;
padding: 0px;
}
.can{
background-color: darkslategray;
}
.div1{
background-color: aquamarine;
width: 400px;
height: 100px;
margin-top: 10px;
display: block;
}
</style>
</head>
<body>
<canvas id="can" width="400" height="600" class="can"></canvas>
<div id='test' class="div1"></div>
<script src="base/cbase.js"></script>
<script src="base/base.js"></script>
<script src="base/shape.js"></script>
<script src="base/event.js"></script>
<script src="base/zmm.js"></script>
<script src="base/zcf.js"></script>
<!--
<script src="app/Snake.js"></script>
<script src="app/app.js"></script>
-->
<script src="app1/app1.js"></script>
</body>
</html>