Advertisement
1xptolevitico69

Navigation bar basic code.

Oct 13th, 2019
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.40 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang=en>
  3. <head>
  4. <title></title>
  5. <meta charset=utf-8>
  6. <meta name="viewport" content="width=device-width">
  7. <style>
  8.  
  9. .bar {  width:0px;height:100vh;transition: all 0.2s linear;                        background-color:red;display:block;position:fixed;
  10.         top:0;margin:0;left:0;  }
  11. span { font-size:50px;text-align:center;margin:40px 0;display:block; }
  12. .H { font-size:90px;text-align:center;margin:40px 0;font-family:arial;  }
  13. .F { font-size:90px;text-align:center;margin:40px 0 90px 0;
  14.      font-family:arial;  }
  15. h2 {  margin:50px 0;padding:0 20px 0 50px;text-indent:100px;
  16.       font-size:25px;line-height:50px; }
  17. #close_nav {  float:right;  }
  18. #open_bar {  position:fixed;top:10px;  }
  19.  
  20. </style>
  21. </head>
  22. <body>
  23.  
  24. <div class='container'>
  25. <button onclick='open_bar()' id='open_bar'>Navigation Bar</button>
  26. <span id='bar' class='bar'><button onclick='shut()' id='close_nav'>close</button></span>
  27. <h1 class='H'>Header</h1>
  28. <span>Some text</span>
  29. <h2>Style never met and those among great. At no or september sportsmen he perfectly happiness attending. Depending listening delivered off new she procuring satisfied sex existence. Person plenty answer to exeter it if. Law use assistance especially resolution cultivated did out sentiments unsatiable. Way necessary had intention happiness but september delighted his curiosity. Furniture furnished or on strangers neglected remainder engrossed.
  30.  
  31. Greatly cottage thought fortune no mention he. Of mr certainty arranging am smallness by conveying. Him plate you allow built grave. Sigh sang nay sex high yet door game. She dissimilar was favourable unreserved nay expression contrasted saw. Past her find she like bore pain open. Shy lose need eyes son not shot. Jennings removing are his eat dashwood. Middleton as pretended listening he smallness perceived. Now his but two green spoil drift.
  32.  
  33. Received overcame oh sensible so at an. Formed do change merely to county it. Am separate contempt domestic to to oh. On relation my so addition branched. Put hearing cottage she norland letters equally prepare too. Replied exposed savings he no viewing as up. Soon body add him hill. No father living really people estate if. Mistake do produce beloved demesne if am pursuit. </h2>
  34. </div>
  35. <h1 class='F'>Footer</h1>
  36.  
  37.  
  38. <script>
  39.  
  40. function shut(){
  41. bar.style.width = 0;
  42. }
  43.  
  44. function open_bar(){
  45. bar.style.width = '200px';
  46. }
  47.  
  48.  
  49. </script>
  50. </body>
  51. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement