|
|
- <!-- Footer -->
- <footer class="w3-container w3-padding-32 w3-theme-d1 w3-center">
- <h4>Follow Us</h4>
- <a class="w3-button w3-large w3-teal" href="http://instagram.com/jrtechs" title="Google +"><i class="fa fa-instagram"></i></a>
- <a class="w3-button w3-large w3-teal w3-hide-small" href="javascript:void(0)" title="Linkedin"><i class="fa fa-linkedin"></i></a>
- <p>Powered by <a href="https://www.jrtechs.net" target="_blank">Jrtechs</a></p>
-
- <div style="position:relative;bottom:100px;z-index:1;" class="w3-tooltip w3-right">
- <span class="w3-text w3-padding w3-teal w3-hide-small">Go To Top</span>
- <a class="w3-button w3-theme" href="#myPage"><span class="w3-xlarge">
- <i class="fa fa-chevron-circle-up"></i></span></a>
- </div>
- </footer>
-
- <script>
- // Script for side navigation
- function w3_open() {
- var x = document.getElementById("mySidebar");
- x.style.width = "300px";
- x.style.paddingTop = "10%";
- x.style.display = "block";
- }
-
- // Close side navigation
- function w3_close() {
- document.getElementById("mySidebar").style.display = "none";
- }
-
- // Used to toggle the menu on smaller screens when clicking on the menu button
- function openNav() {
- 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>
- <?php
-
- ?>
-
|