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.

23 lines
399 B

  1. <?php
  2. //5-16-17
  3. $dir = 2;
  4. include '../includes/header.php';
  5. echo '<br><div class="w3-row">
  6. <div class="w3-twothird w3-container ">';
  7. include('zombiePanda.html');
  8. echo '</div><div class="w3-third w3-container">';
  9. //high scores
  10. include('../includes/profile.php');
  11. echo '</div>';
  12. echo '</div>';
  13. include '../includes/footer.php';
  14. ?>