Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.21 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <title>404 Page Not Found</title>
  6. <style type="text/css">
  7.  
  8. ::selection{ background-color: #E13300; color: white; }
  9. ::moz-selection{ background-color: #E13300; color: white; }
  10. ::webkit-selection{ background-color: #E13300; color: white; }
  11.  
  12. body {
  13.     background-color: #fff;
  14.     margin: 40px;
  15.     font: 13px/20px normal Helvetica, Arial, sans-serif;
  16.     color: #4F5155;
  17. }
  18.  
  19. a {
  20.     color: #003399;
  21.     background-color: transparent;
  22.     font-weight: normal;
  23. }
  24.  
  25. h1 {
  26.     color: #444;
  27.     background-color: transparent;
  28.     border-bottom: 1px solid #D0D0D0;
  29.     font-size: 19px;
  30.     font-weight: normal;
  31.     margin: 0 0 14px 0;
  32.     padding: 14px 15px 10px 15px;
  33. }
  34.  
  35. code {
  36.     font-family: Consolas, Monaco, Courier New, Courier, monospace;
  37.     font-size: 12px;
  38.     background-color: #f9f9f9;
  39.     border: 1px solid #D0D0D0;
  40.     color: #002166;
  41.     display: block;
  42.     margin: 14px 0 14px 0;
  43.     padding: 12px 10px 12px 10px;
  44. }
  45.  
  46. #container {
  47.     margin: 10px;
  48.     border: 1px solid #D0D0D0;
  49.     -webkit-box-shadow: 0 0 8px #D0D0D0;
  50. }
  51.  
  52. p {
  53.     margin: 12px 15px 12px 15px;
  54. }
  55. </style>
  56. </head>
  57. <body>
  58.     <div id="container">
  59.         <h1>404 Page Not Found</h1>
  60.         <p>The page you requested was not found.</p>    </div>
  61. </body>
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement