Simple website with some JavaScript games.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
413 B

  1. <?php
  2. //5-16-17
  3. //ini_set('display_errors', 1);
  4. include 'includes/header.php';
  5. echo '<br><div class="w3-row">
  6. <div class="w3-half w3-container ">';
  7. include('games/bamboofield.html');
  8. echo '</div><div class="w3-half w3-container">';
  9. include('games/zombiePanda.html');
  10. echo '</div>';
  11. echo '</div>';
  12. include 'includes/footer.php';
  13. ?>