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 Servidor Apache</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- background-color: #f0f0f5;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100vh;
- margin: 0;
- }
- .container {
- text-align: center;
- padding: 50px;
- border: 2px solid #4CAF50;
- border-radius: 10px;
- background-color: #ffffff;
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
- }
- h1 {
- color: #4CAF50;
- font-size: 2.5em;
- }
- p {
- color: #333333;
- font-size: 1.2em;
- }
- a {
- text-decoration: none;
- color: #4CAF50;
- font-weight: bold;
- }
- a:hover {
- color: #45a049;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <h1>¡Bienvenido al Servidor Apache!</h1>
- <p>Este contenedor está funcionando correctamente en un entorno Debian.</p>
- <p>Explora más sobre Docker y Apache <a href="https://httpd.apache.org/">aquí</a>.</p>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement