1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Page Not Found</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <link rel="shortcut icon" href="favicon.ico" />
  8. <style>
  9. * {
  10. line-height: 1.2;
  11. margin: 0;
  12. }
  13. html {
  14. color: #888;
  15. display: table;
  16. font-family: sans-serif;
  17. height: 100%;
  18. text-align: center;
  19. width: 100%;
  20. }
  21. body {
  22. display: table-cell;
  23. vertical-align: middle;
  24. margin: 2em auto;
  25. }
  26. h1 {
  27. color: #555;
  28. font-size: 2em;
  29. font-weight: 400;
  30. }
  31. p {
  32. margin: 0 auto;
  33. width: 280px;
  34. }
  35. @media only screen and (max-width: 280px) {
  36. body, p {
  37. width: 95%;
  38. }
  39. h1 {
  40. font-size: 1.5em;
  41. margin: 0 0 0.3em;
  42. }
  43. }
  44. </style>
  45. </head>
  46. <body>
  47. <h1>Page Not Found</h1>
  48. <p>Sorry, but the page you were trying to view does not exist.</p>
  49. </body>
  50. </html>
  51. <!-- IE needs 512+ bytes: http://blogs.msdn.com/b/ieinternals/archive/2010/08/19/http-error-pages-in-internet-explorer.aspx -->