404.html 937 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <style>
  7. html, body {
  8. background-color: black;
  9. color: orange;
  10. font-family: Arial, Helvetica, sans-serif;
  11. font-size: 24px;
  12. margin: 0;
  13. width: 100vw;
  14. height: 100vh;
  15. }
  16. .center {
  17. width: 100vw;
  18. height: 100vh;
  19. display: flex;
  20. justify-content: center;
  21. align-items: center;
  22. flex-direction: column;
  23. gap: 20px;
  24. }
  25. </style>
  26. <title>Skibidihub - 404</title>
  27. </head>
  28. <body>
  29. <div class="center">
  30. <p>The content you are trying to access on the site "skibidihub" is not available on the site "skibidihub"</p>
  31. <img src="./../assets/404.png" width="500px">
  32. </div>
  33. </body>
  34. </html>