blob: 296b48144d833cff3407f92a8b63b470be938def (
plain)
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>Games</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/png" href="favicon.png">
</head>
<body>
<div id="navbar"></div>
<script src="navbar.js"></script>
<h2>Games</h2>
<div class="container-fluid">
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-8 col-xs-10 well well-sm project">
<img src="screenshots/ballbounce.png" width=200 height=200><br>
<div class="project-title"><a href="ballbounce.html">Ball bounce</a></div>
Try to bounce a ball with your mouse. The game
gets harder and harder because you can't see the
ball behind its tracks.
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-8 col-xs-10 well well-sm project">
<img src="screenshots/magnets.png" width=200 height=200><br>
<div class="project-title"><a href="magnets.html">Magnets</a></div>
Try to avoid magnets which are attracted to your
mouse.
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-8 col-xs-10 well well-sm project">
<img src="screenshots/picalculator.png" width=250 height=250><br>
<div class="project-title"><a href="2pi.html">π Calculator</a></div>
Draw a circle, then find out how well your circle
approximates π!
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-8 col-xs-10 well well-sm project">
<iframe frameborder="0" src="https://itch.io/embed/77009?link_color=18829f" width="208" height="167"></iframe><br>
<div class="full-title">
<span class="project-title">Domino simulator</span>
<a href="DominoSimulator.html">web version</a> or <a href="https://qualum.itch.io/domino-simulator">offline version</a>
</div>
Place dominos, then knock them over.
</div>
</div>
</div>
</body>
</html>
|