2015-04-09 11:20:50 +02:00
|
|
|
<?php include_once("header_functions.php"); ?>
|
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<?php head("Bouncing cube"); ?>
|
|
|
|
<body>
|
|
|
|
<?php include("header.php"); ?>
|
|
|
|
<?php include("nav.php"); ?>
|
2015-04-11 17:08:43 +02:00
|
|
|
<section>
|
|
|
|
<h2>Bouncing cube</h2>
|
|
|
|
<p>
|
|
|
|
Click on the cube to make it jump !
|
|
|
|
</p>
|
|
|
|
<div id="container"></div>
|
|
|
|
</section>
|
2015-04-09 11:20:50 +02:00
|
|
|
<?php include("jsIncludes.php"); ?>
|
|
|
|
<script src="js/BouncingMain.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|