-
Notifications
You must be signed in to change notification settings - Fork 0
/
examples.html
58 lines (51 loc) · 1.49 KB
/
examples.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
50
51
52
53
54
55
56
57
58
<html>
<head>
<meta charset="utf-8">
<title>ToniestTony's Github</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<script src="./js/jt_lib21.js"></script>
<header>
<ul class="nav">
<a href="./index.html"><li><h2>Home page</h2></li></a>
<a href="#"><li class="current"><h2>JT examples</h2></li></a>
<a href="./jt.html"><li><h2>JT documentation</h2></li></a>
<a href="./tutorials.html"><li><h2>JT tutorials</h2></li></a>
</ul>
</header>
<main>
<div id="main">
<h1>JT examples</h1>
<br>
<p>Below are some simple examples of games you can make with the JT library and JT Engine</p>
<br>
<h2>Platformer game</h2>
<canvas id="can"></canvas>
<br>
<br>
<br>
<h2>Puzzle game</h2>
<canvas id="can2"></canvas>
<br>
<br>
<br>
<h2>Racing game</h2>
<canvas id="can3"></canvas>
<br>
<br>
<p id="copy"></p>
</div>
</main>
<footer>
<small>
ToniestTony's Github page , <a href="https://github.com/ToniestTony">See the github</a> or <a href = "mailto: [email protected]">contact me</a>
</small>
</footer>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="./js/platformer.js"></script>
<script src="./js/puzzle.js"></script>
<script src="./js/race.js"></script>
<script src="./js/init.js"></script>
</body>
</html>