not_found.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <HTML>
  2. <HEAD>
  3. <TITLE>404 Not Found</TITLE>
  4. <BASE href="/error_docs/"><!--[if lte IE 6]></BASE><![endif]-->
  5. <style>
  6. @import url(http://fonts.googleapis.com/css?family=Open+Sans:300);
  7. body {
  8. font-family: 'Open Sans', sans-serif;
  9. color: #444;
  10. font-weight: 300;
  11. text-align: center;
  12. }
  13. h1 {
  14. font-weight: 300;
  15. font-size: 100px;
  16. }
  17. h1 i {
  18. font-style: normal;
  19. display: block;
  20. font-size: 200px;
  21. color:orangered;
  22. }
  23. a:link {
  24. color: orangered;
  25. text-decoration: none;
  26. }
  27. ADDRESS {
  28. font-style: normal;
  29. }
  30. p {
  31. font-size: 20px;
  32. }
  33. hr {
  34. margin: 20px 20px;
  35. display: block;
  36. }
  37. @media all and (max-width: 700px){
  38. h1 {
  39. font-size: 36px;
  40. }
  41. h1 i {
  42. font-size: 80px;
  43. }
  44. }
  45. </style>
  46. <meta name="viewport" content="width=device-width, initial-scale=1">
  47. </HEAD>
  48. <BODY>
  49. <H1><i>404</i>Not Found</H1>
  50. <p>
  51. The requested document was not found on this server.
  52. </p>
  53. <p>
  54. If you want to report this error click <a href="mailto:matschinermax@gmail.com">here</a>.
  55. </p>
  56. <HR>
  57. <ADDRESS>
  58. Web Server at linkom.at, Linkomat GmbH, Goldschlagstraße 110/30, AT-1150 Wien
  59. </ADDRESS>
  60. </BODY>
  61. </HTML>
  62. <!--
  63. - Unfortunately, Microsoft has added a clever new
  64. - "feature" to Internet Explorer. If the text of
  65. - an error's message is "too small", specifically
  66. - less than 512 bytes, Internet Explorer returns
  67. - its own error message. You can turn that off,
  68. - but it's pretty tricky to find switch called
  69. - "smart error messages". That means, of course,
  70. - that short error messages are censored by default.
  71. - IIS always returns error messages that are long
  72. - enough to make Internet Explorer happy. The
  73. - workaround is pretty simple: pad the error
  74. - message with a big comment like this to push it
  75. - over the five hundred and twelve bytes minimum.
  76. - Of course, that's exactly what you're reading
  77. - right now.
  78. -->