My Super cool PHP templated Website 🙄

This is a cool example of how to do templates in PHP. Hope it's helpful!

Some intersing facts about this page:


        
<!-- for the header -->
<header>        
    <?php
        require 'header.php';
    ?>
</header>

<!-- content goes here -->

<!-- for the footer -->
<footer>
    <?php
        require 'footer.php';
    ?>
</footer>