Untitled
unknown
plain_text
2 years ago
893 B
4
Indexable
Never
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>404 NOT FOUND</title> <style> body { background-color: #f1f1f1; font-family: Arial, sans-serif; } .container { display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100vh; } h1 { font-size: 72px; font-weight: bold; color: #555; margin: 0; } .number{ font-size: 72px; font-weight: bold; color: red; margin: 0; } p { font-size: 24px; color: #999; } </style> </head> <body> <div class="container"> <h1 class="number">404</h1> <h1> NOT FOUND</h1> <p>La página que buscas no existe</p> </div> </body> </html>