Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="es">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Servidor Backend Funcionando</title>
- <style>
- body {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100vh;
- margin: 0;
- font-family: Arial, sans-serif;
- background-color: #f0f0f0;
- color: #333;
- }
- .container {
- text-align: center;
- background: #fff;
- padding: 2em;
- border-radius: 8px;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
- }
- h1 {
- color: #4CAF50;
- }
- p {
- margin: 0.5em 0;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <h1>¡Servidor Backend Funcionando!</h1>
- <p>Tu servidor está corriendo correctamente.</p>
- <p>¡Todo está listo para comenzar a trabajar!</p>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement