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>Bienvenido al Backend</title>
- <style>
- body {
- font-family: 'Arial', sans-serif;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100vh;
- margin: 0;
- background: linear-gradient(135deg, #667eea, #764ba2);
- color: #ffffff;
- }
- .container {
- text-align: center;
- max-width: 600px;
- padding: 20px;
- background-color: rgba(0, 0, 0, 0.5);
- border-radius: 10px;
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
- }
- h1 {
- font-size: 3em;
- margin-bottom: 10px;
- }
- p {
- font-size: 1.2em;
- margin-bottom: 20px;
- }
- .button {
- display: inline-block;
- padding: 10px 20px;
- font-size: 1.2em;
- color: #ffffff;
- text-decoration: none;
- border: 2px solid #ffffff;
- border-radius: 5px;
- transition: background-color 0.3s, color 0.3s;
- }
- .button:hover {
- background-color: #ffffff;
- color: #764ba2;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <h1>¡Bienvenido al Backend!</h1>
- <p>El servidor proxy está funcionando correctamente y ha direccionado tu solicitud a este backend.</p>
- <a href="#" class="button">Más Información</a>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement