aDriv4 - MANAGER
Edit File: 404.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>404 Not Found</title> <style> *{ padding: 0; margin: 0; } body { text-align: center; /* padding: 50px; */ font-family: 'Arial', sans-serif; width: 100%; height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; } h2 { color: transparent; font-size: 150px; background-image: url('./image.png'); background-clip: text; } h3 { color: #2E8ACA; } p { color: #3f4043; font-size: 20px; margin: 20px auto; width: 60%; } a { color: #2E8ACA; text-decoration: none; font-size: 18px; } a:hover { text-decoration: underline; } </style> </head> <body> <h2>Oops...</h2> <h3>404-PAGE NOT FOUND</h3> <p>The page you are looking for might have been removed had its name changed or is temporarily unavailable</p> <a href="https://www.vertexpower.co.in/">Go Home</a> </body> </html>