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.

42 lines
1.5 KiB

7 years ago
7 years ago
  1. <!-- Footer -->
  2. <footer class="w3-container w3-padding-32 w3-theme-d1 w3-center">
  3. <h4>Follow Us</h4>
  4. <a class="w3-button w3-large w3-teal" href="http://instagram.com/jrtechs" title="Google +"><i class="fa fa-instagram"></i></a>
  5. <a class="w3-button w3-large w3-teal w3-hide-small" href="https://www.youtube.com/channel/UCbebizd25t22-vv13_lr9_A/featured" title="Linkedin"><i class="fa fa-youtube"></i></a>
  6. <p>Powered by <a href="https://www.jrtechs.net" target="_blank">Jrtechs</a></p>
  7. <div style="position:relative;bottom:100px;z-index:1;" class="w3-tooltip w3-right">
  8. <span class="w3-text w3-padding w3-teal w3-hide-small">Go To Top</span>
  9. <a class="w3-button w3-theme" href="#myPage"><span class="w3-xlarge">
  10. <i class="fa fa-chevron-circle-up"></i></span></a>
  11. </div>
  12. </footer>
  13. <script>
  14. // Script for side navigation
  15. function w3_open() {
  16. var x = document.getElementById("mySidebar");
  17. x.style.width = "300px";
  18. x.style.paddingTop = "10%";
  19. x.style.display = "block";
  20. }
  21. // Close side navigation
  22. function w3_close() {
  23. document.getElementById("mySidebar").style.display = "none";
  24. }
  25. // Used to toggle the menu on smaller screens when clicking on the menu button
  26. function openNav() {
  27. var x = document.getElementById("navDemo");
  28. if (x.className.indexOf("w3-show") == -1) {
  29. x.className += " w3-show";
  30. } else {
  31. x.className = x.className.replace(" w3-show", "");
  32. }
  33. }
  34. </script>
  35. </body>
  36. </html>