Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.50 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <!-- Viewport Manager -->
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7.  
  8.     <!-- Internal Stylesheet -->
  9.     <link rel="stylesheet" href="styles.css">
  10.  
  11.     <!-- W3 Stylesheet -->
  12.     <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
  13.  
  14.     <!-- Paragraph font - "Share Tech Mono" -->
  15.     <link href="https://fonts.googleapis.com/css?family=Share+Tech+Mono" rel="stylesheet">
  16.  
  17.     <!-- "Burger Menu" CSS -->
  18.     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  19. </head>
  20.  
  21. <!-- Background Manager -->
  22. <style>
  23. body {
  24.     background-image: url(Images/Backgrounds/mainpage.jpg);
  25. }
  26. </style>
  27.  
  28. <!-- Body Start -->
  29. <body>
  30.  
  31. <!-- Navigation Bar Start -->
  32. <div class="topnav" id="myTopnav">
  33.   <div style="float:right" class="dropdown">
  34.     <button class="dropbtn">Information
  35.       <i class="fa fa-caret-down"></i>
  36.     </button>
  37.     <div class="dropdown-content">
  38.       <a href="#">About us</a>
  39.       <a href="#">F.A.Q</a>
  40.       <a href="#">Join the team</a>
  41.       <a href="#">Social media</a>    
  42.     </div>
  43.   </div>
  44.   <div style="float:right" class="dropdown">
  45.     <button class="dropbtn">Gallery
  46.       <i class="fa fa-caret-down"></i>
  47.     </button>
  48.     <div class="dropdown-content">
  49.       <a href="#">2D Art</a>
  50.       <a href="#">3D Art</a>
  51.       <a href="#">Level Design</a>
  52.     </div>
  53.   </div>
  54.   <div style="float:right" class="dropdown">
  55.     <button class="dropbtn">Factions
  56.       <i class="fa fa-caret-down"></i>
  57.     </button>
  58.     <div class="dropdown-content">
  59.       <a href="ROC.html">Republic of Cascadia</a>
  60.       <a href="#">Red Leafs</a>
  61.       <a href="#">New California Republic</a>
  62.     </div>
  63.   </div>
  64.   <a style="float:right" href="Mainpage.html" class="active">Home</a>  
  65.   <a href="javascript:void(0);" class="icon" onclick="myFunction()">&#9776;</a>
  66. </div>
  67. </div>
  68.  
  69. <!-- Spacing Blocks -->
  70. <br>
  71. <br>
  72. <br>
  73. <br>
  74. <br>
  75. <br>
  76. <br>
  77. <br>
  78. <br>
  79. <br>
  80. <br>
  81. <br>
  82.  
  83. <!-- Hobbes Quote -->
  84. <p style="font-size: 1.8vw"><q><i>I was there when the Americans attacked us. <br> They took our land, our fortune, our future. <br> I’ll take it all back, tear by tear.</i></q> <br> - Colin Hobbes</p>
  85.  
  86. <!-- JS Functionality -->
  87. <script>
  88. function myFunction() {
  89.     var x = document.getElementById("myTopnav");
  90.     if (x.className === "topnav") {
  91.         x.className += " responsive";
  92.     } else {
  93.         x.className = "topnav";
  94.     }
  95. }
  96. </script>
  97.  
  98. </body>
  99. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement