diff options
Diffstat (limited to 'games.html')
-rw-r--r-- | games.html | 105 |
1 files changed, 50 insertions, 55 deletions
@@ -1,56 +1,51 @@ <html> -<head> -<title>Games</title> -<meta charset="utf-8"> -<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> -<link rel="stylesheet" href="css/style.css"> -<link rel="shortcut icon" type="image/png" href="favicon.png"> -<style> -body -{ - margin-left: 10px; -} -</style> -</head> - -<body> -<h2>Games</h2> -<a class="header_link" href="index.html">Home</a> -<a class="header_link" href="all.html">All</a> -<a class="header_link" href="mathematical.html">Mathematical Demonstrations</a> -<a class="header_link" href="apps.html">Android Apps</a> -<hr> - - -<img src="screenshots/ballbounce.png" width=200 height=200><br> -<a href="ballbounce.html">Ball bounce</a><br> -<p> -Try to bounce a ball with your mouse. The game<br> -gets harder and harder because you can't see the<br> -ball behind its tracks.<br> -</p> -<hr> - -<img src="screenshots/magnets.png" width=200 height=200><br> -<a href="magnets.html">Magnets</a><br> -<p> -Try to avoid magnets which are attracted to your<br> -mouse. -</p> -<hr> - -<img src="screenshots/picalculator.png" width=250 height=250><br> -<a href="2pi.html">π Calculator</a><br> -<p> -Draw a circle, then find out how well your circle<br> -approximates π!<br> -</p> -<hr> - -<p>Domino simulator <a href="DominoSimulator.html">web version</a> or <a href="https://qualum.itch.io/domino-simulator">offline version</a></p> -<iframe frameborder="0" src="https://itch.io/embed/77009?linkback=true" width="552" height="167"></iframe><br> -<p> -Place dominos, then knock them over. -</p> - -</body>
\ No newline at end of file + <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> + <hr> + + + <img src="screenshots/ballbounce.png" width=200 height=200><br> + <a href="ballbounce.html">Ball bounce</a><br> + <p> + Try to bounce a ball with your mouse. The game<br> + gets harder and harder because you can't see the<br> + ball behind its tracks.<br> + </p> + <hr> + + <img src="screenshots/magnets.png" width=200 height=200><br> + <a href="magnets.html">Magnets</a><br> + <p> + Try to avoid magnets which are attracted to your<br> + mouse. + </p> + <hr> + + <img src="screenshots/picalculator.png" width=250 height=250><br> + <a href="2pi.html">π Calculator</a><br> + <p> + Draw a circle, then find out how well your circle<br> + approximates π!<br> + </p> + <hr> + + <p>Domino simulator <a href="DominoSimulator.html">web version</a> or <a href="https://qualum.itch.io/domino-simulator">offline version</a></p> + <iframe frameborder="0" src="https://itch.io/embed/77009?linkback=true" width="552" height="167"></iframe><br> + <p> + Place dominos, then knock them over. + </p> + + </body> +</html> |