| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <%- include('common-meta') %>
- <style>
- body {
- color: white;
- background-color: #fff3f3;
- display: flex;
- justify-content: center;
- flex-direction: column;
- align-items: center;
- width: 100vw;
- height: 100vh;
- margin: 0;
- }
- img {
- width: 60%;
- height: auto;
- }
- .container {
- position: relative;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .text-container {
- position: absolute;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- padding-top: 260px;
- }
- .not-found-text {
- color: #F94936;
- font-size: 52px;
- font-weight: 600;
- padding: 20px;
- }
- .back-home-text {
- color: #F94936;
- font-size: 20px;
- }
- /* for mobile */
- @media (max-width: 768px) {
- img {
- width: 90%;
- height: auto;
- }
- .not-found-text {
- font-size: 36px;
- padding: 10px;
- }
- .back-home-text {
- font-size: 18px;
- }
- .text-container {
- padding-top: 180px;
- }
- }
- </style>
- </head>
- <body>
- <div class="container">
- <img src="/assets/icon/404.png" alt="404 Not Found">
- <div class="text-container">
- <div class="not-found-text">Page Not Found</div>
- <a href="/" class="back-home-text">BACK TO HOME PAGE</a>
- </div>
- </div>
- </body>
- </html>
|