Advertisement
thecowmilk

html

May 10th, 2021
972
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.46 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.     <meta name="viewport" content="width=device-width, initial-scale=1">
  5.     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">    
  6.     <link rel="stylesheet" href="style.css">
  7.  
  8.     <style>
  9.         body {
  10.             background-image: url('pictures/wallpaper/wallpaper4.jpeg');
  11.             background-repeat: no-repeat;
  12.             background-attachment: fixed;  
  13.             background-size: cover;
  14.         }
  15. </style>    
  16.     <title> CyberCademy.al </title>
  17.  
  18.     </head>
  19.  
  20.     <body>
  21.    
  22.         <div id="mySidenav" class="sidenav">
  23.             <a href="javascript:void(0)" class="closebtn" onclick="closeNav()">&times;</a>
  24.             <a href="#about">About Us</a>
  25.             <a href="#services">Services</a>
  26.             <a href="#login">Sign In/Sign up</a>
  27.             <a href="#contact">Contact</a>
  28.            
  29.             <button class="dropdown-btn">Dropdown
  30.                 <i class="fa fa-caret-down"></i>
  31.             </button>
  32.  
  33.             <div class="dropdown-container">
  34.                 <a href="#">Link 1</a>
  35.                 <a href="#">Link 2</a>
  36.                 <a href="#">Link 3</a>
  37.             </div>
  38.             <a href="#contact">Search</a>
  39.         </div>
  40.     <span style="font-size:30px;cursor:pointer;position: relative;x" onclick="openNav()">&#9776; open</span>
  41.  
  42.     <script src="scripts.js"> </script>
  43.    
  44.     </body>
  45.  
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement