Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5. <style>
  6. ul {
  7. list-style-type: none;
  8. margin: 0;
  9. padding: 0;
  10. overflow: hidden;
  11. background-color: #333;
  12. position: sticky;
  13. top: 0;
  14. width: 100%;
  15. }
  16.  
  17. li {
  18. float: left;
  19. border-right: 1px solid #bbb;
  20. }
  21.  
  22. li:last-child {
  23. border-right: none;
  24. }
  25.  
  26. li a {
  27. display: block;
  28. color: white;
  29. text-align: center;
  30. padding: 14px 16px;
  31. text-decoration: none;
  32. }
  33.  
  34. li a:hover {
  35. background-color: #111;
  36. }
  37.  
  38. .active {
  39. background-color: #4CAF50;
  40. }
  41.  
  42. .parallax {
  43. background-image: url("background.jpg");
  44. min-height: 666px;
  45. background-attachment: fixed;
  46. background-position: center;
  47. background-repeat: no-repeat;
  48. background-size: cover;
  49. }
  50.  
  51. </style>
  52.  
  53. </head>
  54. <body bgcolor="lightgray">
  55. <h1 class="parallax" style="text-align: center; vertical-align: middle; padding: 250px; color: red;">
  56. ...
  57. <p style="font-size: 20px; font-family: FreeMono, monospace;">...</p>
  58. </h1>
  59. <h1 id="top"></h1>
  60. <ul>
  61. <li class="active"><a href="index.html#top">Home</a></li>
  62. <li><a href="contact.html#top">Contact Me</a></li>
  63. <li><a href="about.html#top">About Me</a></li>
  64. <li style="float: right;"><a href="#bottom">Bottom</a></li>
  65. <li style="float: right;"><a href="#top">Top</a></li>
  66. </ul>
  67. <hr width="90%">
  68. <h1 style="text-align: center; color: green">...</h1>
  69. <hr width="95%">
  70. <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  71. <h1 style="color: red; text-align: center;">TODO</h1>
  72. <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  73. <hr width="95%">
  74. <p style="text-align: center"><abbr title="Greetings">Greetz</abbr> to <del>asdfjkl</del>
  75. <br>
  76. <a href="">Gmail</a> <strong>|</strong>
  77. <a href="">Facebook</a> <strong>|</strong>
  78. <a href="">Github</a>
  79. </p>
  80. <hr width="90%">
  81. <h1 id="bottom"></h1>
  82. </body>
  83. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement