2
0

404.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <html>
  2. <head>
  3. <style>
  4. #message{
  5. display:block;
  6. width:100%;
  7. padding:150px 0;
  8. line-height:1.6em;
  9. text-align:center;
  10. }
  11. h1, h2 {
  12. color: rgb(151, 151, 151);
  13. float: left;
  14. margin:0 0 0 40px;
  15. padding:0;
  16. float:left;
  17. font-family: Georgia, 'Times New Roman', Times, serif;
  18. font-weight: normal;
  19. line-height: normal;
  20. text-transform: uppercase;
  21. }
  22. #message .aside{display:block; width:80%; margin:0 auto; padding:0;}
  23. #message .aside h2 span{display:block; font-size:30px;}
  24. #message p:first-child{margin-top:0;}
  25. h1 {margin-top:-90px; font-size:200px;}
  26. h2 {font-size: 60px;}
  27. </style>
  28. </head>
  29. <body>
  30. <div class="content">
  31. <section id="message">
  32. <div class="aside">
  33. <h1>404</h1>
  34. <h2>Error ! <span>Page Not Found</span></h2>
  35. </div>
  36. </section>
  37. </div>
  38. </body>
  39. </html>