Advertisement
Guest User

Untitled

a guest
Jul 16th, 2018
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html lang="en">
  4. <head>
  5. <meta charset="utf-8" />
  6. <title>Halloween Store</title>
  7. <link rel="shortcut icon" href="images/favicon.ico">
  8. <img src="images/pumpkin.gif" alt="A pumpkin.">
  9. <header>
  10. <h1>The Halloween Store</h1>
  11. <h2>For the mischeavious spirit in us all.</h2>
  12. <link rel="stylesheet" href="styles/normalize.css">
  13. <link rel="stylesheet" href="styles/main.css">
  14. </header>
  15.  
  16. </head>
  17. <main>
  18.  
  19. <h1>Welcome all ladies and gentlemen, children of all ages!</h1>
  20. <h2>Won't you stay and browse these pages? It's certainly never good to keep your fears locked up in cages...</h2>
  21. <body>
  22.  
  23. <p>I started this web site because Halloween has always been my favorite holiday. But during the last year, I started selling some of my favorite halloween products, and they've become quite a hit.</p>
  24. <p>If you click on the Personal link, you can browse my favorite Halloween pictures, stories, and films. And if you join my email list, I will keep you up-to-date on all things Halloween. </p>
  25.  
  26. <p>Look below for some merchandise as ghastly and spooky as ghosts and souls!</p>
  27.  
  28. <div style="float:left;width:160px;">
  29. <h3>Product Categories</h3>
  30. <ul>
  31. <li> <a href="Products/Props.html">Props</a></li>
  32. <li><a href="Products/Costumes.html">Costumes</a></li>
  33. <li><a href="Products/Special Effects.html">Special Effects</a></li>
  34. <li><a href="Products/Masks.html">Masks</a></li>
  35. </ul>
  36. </div>
  37.  
  38.  
  39. <h3> My grave guarantee</h3>
  40. <p> If you aren't completely satisfied with everything you buy from my site, you can return it for a full refund. <b> No questions asked!</b><?p>
  41. </body>
  42. </main>
  43.  
  44.  
  45. <footer>
  46. <p>&copy; 2016 Ben Murach</p>
  47. </footer>
  48. </html>
  49.  
  50. ********************************************
  51. * {margin: 0;}
  52.  
  53. html {background: url("../images/bats.gif");}
  54.  
  55. body {font-family: Arial, Helvetica, sans-serif; font-size: 100%;
  56. border: 6px solid black; box-shadow: 4px 4px 4px 4px #000000;
  57. background-color: white; background-position: fixed;
  58. margin: auto;
  59. max-width: 1500px;
  60. text-indent: 2em;
  61. padding-bottom: 0.5em;}
  62.  
  63. main {width: 90%;}
  64. main h1::first-letter { font-size: 250%}
  65. main p {padding-bottom: 0.3em;}
  66.  
  67. header {border-bottom: 3px solid #000000;
  68. background: linear-gradient(45deg, white, orange, black);}
  69.  
  70. h1, h2 {text-indent: 30px;}
  71.  
  72. h1 {font-size: 170%; img}
  73.  
  74. img {float: left;}
  75.  
  76. h2 {font-size: 170%;}
  77.  
  78. h3 {font-size: 130%;}
  79.  
  80. li {margin: 10px 0;}
  81.  
  82. a {color: orange; font-weight: bold;}
  83.  
  84. a.input:focus { color: green;}
  85. a:hover { color: green;}
  86.  
  87. footer { font-size: 75%; text-align: center; border-top: 3px solid #000000;
  88. background: linear-gradient(45deg, black, orange, white);
  89. padding-bottom: 2em; padding-top: 2em;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement