-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1009 Bytes
/
index.html
File metadata and controls
30 lines (30 loc) · 1009 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
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<head>
<title>JavaScript showcase</title>
<style>
li {
margin-bottom: 1em;
}
</style>
</head>
<body>
<h1>JavaScript showcase</h1>
<p>Here are some of the JavaScript projects in my GitHub for you to play with.</p>
<p>I've listed them in order of what I think is <em>most impressive first</em> 😄</p>
<ul>
<li>
<a href="JS-Robots-2/index.html">JS Robots - a <strong>programming game</strong></a>
</li>
<li>
<a href="webgl-mooc-pompeu-fabra/index.html">End-of-course project for a MOOC by Pompeu Fabra University - a <strong>WebGL solar system</strong></a>
<br>
Controls: Mouse to point your spaceship, WASD to move and QE to rotate.
</li>
<li>
<a href="Escape-from-Manchester/index.html">Escape from Manchester - a <strong>point-and-click "game"</strong></a>
</li>
</ul>
</body>
</html>