404.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>404</title>
  5. <meta charset="utf-8" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1" />
  7. <link
  8. rel="stylesheet"
  9. href="https://fonts.googleapis.com/css?family=Cousine"
  10. />
  11. <style>
  12. body {
  13. background-color: #fff;
  14. color: #745fb5;
  15. font-family: -apple-system, BlinkMacSystemFont, segoe ui, roboto, oxygen,
  16. ubuntu, cantarell, fira sans, droid sans, helvetica neue, sans-serif;
  17. font-weight: 200;
  18. height: 100vh;
  19. margin: 0px;
  20. padding: 0px;
  21. }
  22. .span-gray {
  23. color: #9eaab6;
  24. }
  25. .full-height {
  26. height: 100vh;
  27. }
  28. .flex-center {
  29. align-items: center;
  30. display: flex;
  31. justify-content: center;
  32. }
  33. .position-ref {
  34. position: relative;
  35. }
  36. .top-right {
  37. position: absolute;
  38. right: 10px;
  39. top: 18px;
  40. }
  41. .content {
  42. text-align: center;
  43. }
  44. .title {
  45. font-size: 48px;
  46. }
  47. </style>
  48. </head>
  49. <body>
  50. <div class="flex-center position-ref full-height">
  51. <div class="top-right links"></div>
  52. <div class="content">
  53. <div class="title">
  54. <p>
  55. 404
  56. <span class="span-gray"> | </span>
  57. NOT_FOUND
  58. </p>
  59. </div>
  60. </div>
  61. </div>
  62. </body>
  63. </html>