Old UniVate Website
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

header.blade.php 833B

12345678910111213141516171819202122232425262728293031
  1. <link rel="stylesheet" href="{{ asset('http://univateproperties.co.za/css/header.css') }}">
  2. <nav class="topnav" id="myTopnav">
  3. <a href="/"><img width="40%" src="http://test.univateproperties.co.za/images/UniVate_properties_png_logo.png"/></a>
  4. <a href="/">Home</a>
  5. <a href="/about">About</a>
  6. <div class="dropdown">
  7. <button class="dropbtn">Timeshare
  8. </button>
  9. <div class="dropdown-content">
  10. <a href="/to-sell">To Sell</a>
  11. <a href="/to-buy">To Buy</a>
  12. <a href="/admin">Admin</a>
  13. <a href="/resort-upload">Resort Upload</a>
  14. <a href="/faqs">FAQs</a>
  15. </div>
  16. </div>
  17. </nav>
  18. <script>
  19. function myFunction() {
  20. var x = document.getElementById("myTopnav");
  21. if (x.className === "topnav") {
  22. x.className += " responsive";
  23. } else {
  24. x.className = "topnav";
  25. }
  26. }
  27. </script>