Advertisement
Guest User

Untitled

a guest
Feb 17th, 2020
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Test</title>
  8. <style>
  9.  
  10. body,
  11. html {
  12. background-color: #000;
  13. color: #fff;
  14. width: 100%;
  15. height: 100%;
  16. margin: 0;
  17. padding: 0;
  18. overflow: hidden;
  19. }
  20.  
  21. canvas {
  22. position: absolute;
  23. top: 0;
  24. left: 0
  25. }
  26. /* The navigation bar */
  27. .navbar {
  28. overflow: hidden;
  29. background-color: #333;
  30. position: fixed;
  31. /* Set the navbar to fixed position */
  32. top: 0;
  33. left: 0;
  34. right: 0;
  35. /* Position the navbar at the top of the page */
  36. width: 100%;
  37. /* Full width */
  38. }
  39.  
  40. /* Links inside the navbar */
  41. .navbar a {
  42. float: left;
  43. display: block;
  44. color: #f2f2f2;
  45. text-align: center;
  46. padding: 14px 16px;
  47. text-decoration: none;
  48. }
  49.  
  50. /* Change background on mouse-over */
  51. .navbar a:hover {
  52. background: #ddd;
  53. color: black;
  54. }
  55.  
  56. /* Main content */
  57. .main {
  58. color: red;
  59. margin-top: 50px;
  60. /* Add a top margin to avoid content overlay */
  61. }
  62. </style>
  63. <script src="https://kit.fontawesome.com/ad24df4c4e.js" crossorigin="anonymous"></script>
  64. </head>
  65.  
  66. <body>
  67. <div>
  68. <canvas id="bgCanvas"></canvas>
  69. </div>
  70. <div class="navbar">
  71. <a href="#home">Home</a>
  72. <a href="#news">News</a>
  73. <a href="#contact">Contact</a>
  74. <a onclick="console.log('testmessage');"><i class="fas fa-adjust"></i></a>
  75. </div>
  76.  
  77.  
  78. <div class="main">
  79. <p style="color: white;">Some text some text some text some text..</p>
  80. </div>
  81. </body>
  82. <footer>
  83. <script src="animation.js"></script>
  84. <script src="script.js"></script>
  85. </footer>
  86.  
  87. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement