Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link type="text/css" rel="Stylesheet" href="Stylesheet.css" />
  5. <title>Derpycats.com</title>
  6. </head>
  7. <body>
  8.  
  9. <!--Background (Carbon Fibre)-->
  10. <body background="background.jpg" alt="Background" />
  11.  
  12. <!--Header-->
  13. <h1 id="header">DerpyCats.com</h1>
  14. <div id="headerdiv"></div>
  15.  
  16. <!---Links-->
  17. <a href="http://www.youtube.com">Home</a>
  18.  
  19. </body>
  20. </html>
  21.  
  22. /* Sets the pixel density to "fill browser" */
  23. * {
  24. width: 100%;
  25. height: 100%;
  26. }
  27.  
  28. /* Heading */
  29. #header {
  30. float:left;
  31. margin-left: 5px;
  32. padding-top: 5px;
  33. font-size: 16px;
  34. font-family: Verdana, sans-serif;
  35. color: #D9411E;
  36. z-index: 2;
  37. position: fixed;
  38. font-size: 50px;
  39. bottom: -50px;
  40. }
  41.  
  42. /* CSS for the heading div */
  43. #headerdiv {
  44. border-radius: 5px;
  45. z-index: 1;
  46. position: fixed;
  47. width: 99%;
  48. margin-top: -20px;
  49. height: 100px;
  50. background-color: white;
  51. margin-bottom: 10px;
  52. }
  53.  
  54. /* Css for the links */
  55. a {
  56. z-index: 3;
  57. font-family: Verdana, sans-serif;
  58. }
  59.  
  60. /* CSS for the normal paragraphs */
  61. .paragraph {
  62. color: white;
  63. font-family: Courier, serif;
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement