404.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <meta name="theme-color" content="#b6359c">
  8. <link rel="shortcut icon" href="icons/sus.ico" sizes="48x48">
  9. <link rel="bookmark" href="icons/sus.ico">
  10. <title>404 - AmogOS</title>
  11. <style>
  12. body{
  13. margin: 0;
  14. width: 100%;
  15. height: 100%;
  16. background-color: #66ddcc;
  17. overflow: hidden;
  18. transition: background-color .5s;
  19. }
  20. p{
  21. width: 150%;
  22. margin: 0;
  23. margin-left: -25%;
  24. margin-top: -25%;
  25. text-align: center;
  26. font-size: 128px;
  27. color: #888888;
  28. word-break: break-all;
  29. }
  30. #warning{
  31. position: fixed;
  32. top: 20px;
  33. left: 20px;
  34. margin: 0;
  35. font-size: 18px;
  36. color: #ffffff;
  37. }
  38. ::selection{
  39. color: #ffffff;
  40. background-color: transparent;
  41. }
  42. </style>
  43. </head>
  44. <body>
  45. <span id="warning">Our sussy bakas could not locate the requested page... Back to home in 5...</span>
  46. <p id="main">404 404 404 404 404 404 404 404 404 404 404 404 404 404 040 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 420 404 404 404 404 404 404 404 404 404 404 404 040 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 690 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404 404</p>
  47. <script>
  48. var countdown = 5;
  49. setInterval(function(){
  50. countdown -= 1;
  51. document.getElementById("warning").innerHTML = "Our crewmates could not locate the requested page... Back to home in " + countdown + "...";
  52. if (countdown == 0){
  53. window.location.href = "https://amog-os.github.io";
  54. }
  55. }, 1000);
  56. </script>
  57. </body>
  58. </html>