-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (56 loc) · 1.58 KB
/
Copy pathindex.html
File metadata and controls
65 lines (56 loc) · 1.58 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sword Engine</title>
<style>
* {
padding: 0;
margin: 0;
}
#app{
position: relative;
}
.lists{
position: absolute;
right: 0;
}
</style>
</head>
<body>
<div id="app">
<div class="lists">
<ul>
<li>
<h1>Simulations</h1>
<ol>
<li><a href="/samples/simulations/SolorSystem/">Solor System</a></li>
<li><a href="/samples/simulations/BeziereCurves/">Beziere Curves</a></li>
<li><a href="/samples/simulations/Raining/">Raining</a></li>
</ol>
</li>
<li>
<h1>Games</h1>
<ol>
<li><a href="/samples/games/FlappyBird/">Flappy Bird</a></li>
<li><a href="/samples/games/Snake/">Snake</a></li>
<li><a href="/samples/games/SpaceWar/">Space War</a></li>
</ol>
</li>
<li>
<h1>DSA Simulations</h1>
<ol>
<li><a href="/samples/dsa-simulation/knapsack-DP/">0-1 Knapsack DP</a></li>
<li><a href="/samples/dsa-simulation/array-rotation/">Array reverse</a></li>
<li><a href="/samples/dsa-simulation/playfair/">Play fair algo</a></li>
</ol>
</li>
</ul>
</div>
<canvas class="canvas" id="canvas"></canvas>
</div>
<script type="module" src="/main.ts"></script>
</body>
</html>