PHP Classes

File: app/views/partials/footer.php

Recommend this page to a friend!
  Classes of Nahidul Hasan   Simplex   app/views/partials/footer.php   Download  
File: app/views/partials/footer.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Simplex
Example application based on a MVC framework
Author: By
Last change:
Date: 14 days ago
Size: 909 bytes
 

Contents

Class file image Download

<!-- Footer -->
<footer class="w3-container w3-padding-64 w3-center w3-opacity">
  <div class="w3-xlarge w3-padding-32">
    <i class="fa fa-facebook-official w3-hover-opacity"></i>
    <i class="fa fa-instagram w3-hover-opacity"></i>
    <i class="fa fa-snapchat w3-hover-opacity"></i>
    <i class="fa fa-pinterest-p w3-hover-opacity"></i>
    <i class="fa fa-twitter w3-hover-opacity"></i>
    <i class="fa fa-linkedin w3-hover-opacity"></i>
 </div>
 <p>Powered by <a href="https://github.com/nahidulhasan/simplex" target="_blank">simplex</a></p>
</footer>

<script>
// Used to toggle the menu on small screens when clicking on the menu button
function myFunction() {
    var x = document.getElementById("navDemo");
    if (x.className.indexOf("w3-show") == -1) {
        x.className += " w3-show";
    } else {
        x.className = x.className.replace(" w3-show", "");
    }
}
</script>

</body>
</html>