404.ejs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title><%= title %></title>
  5. <meta name="description" content="<%= description %>">
  6. <style>
  7. body {
  8. color: white;
  9. background-color: #fff3f3;
  10. display: flex;
  11. justify-content: center;
  12. flex-direction: column;
  13. align-items: center;
  14. width: 100vw;
  15. height: 100vh;
  16. margin: 0;
  17. }
  18. img {
  19. width: 60%;
  20. height: auto;
  21. }
  22. .container {
  23. position: relative;
  24. display: flex;
  25. flex-direction: column;
  26. justify-content: center;
  27. align-items: center;
  28. }
  29. .text-container {
  30. position: absolute;
  31. display: flex;
  32. flex-direction: column;
  33. justify-content: center;
  34. align-items: center;
  35. padding-top: 260px;
  36. }
  37. .not-found-text {
  38. color: #F94936;
  39. font-size: 52px;
  40. font-weight: 600;
  41. padding: 20px;
  42. }
  43. .back-home-text {
  44. color: #F94936;
  45. font-size: 20px;
  46. }
  47. /* for mobile */
  48. @media (max-width: 768px) {
  49. img {
  50. width: 90%;
  51. height: auto;
  52. }
  53. .not-found-text {
  54. font-size: 36px;
  55. padding: 10px;
  56. }
  57. .back-home-text {
  58. font-size: 18px;
  59. }
  60. .text-container {
  61. padding-top: 180px;
  62. }
  63. }
  64. </style>
  65. </head>
  66. <body>
  67. <div class="container">
  68. <img src="/assets/icon/404.png" alt="404 Not Found">
  69. <div class="text-container">
  70. <div class="not-found-text">Page Not Found</div>
  71. <a href="/" class="back-home-text">BACK TO HOME PAGE</a>
  72. </div>
  73. </div>
  74. </body>
  75. </html>