Advertisement
Sergio_Istea

debian apache2 index.html

Nov 7th, 2024
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="es">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Bienvenido al Servidor Apache</title>
  7. <style>
  8. body {
  9. font-family: Arial, sans-serif;
  10. background-color: #f0f0f5;
  11. display: flex;
  12. justify-content: center;
  13. align-items: center;
  14. height: 100vh;
  15. margin: 0;
  16. }
  17. .container {
  18. text-align: center;
  19. padding: 50px;
  20. border: 2px solid #4CAF50;
  21. border-radius: 10px;
  22. background-color: #ffffff;
  23. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  24. }
  25. h1 {
  26. color: #4CAF50;
  27. font-size: 2.5em;
  28. }
  29. p {
  30. color: #333333;
  31. font-size: 1.2em;
  32. }
  33. a {
  34. text-decoration: none;
  35. color: #4CAF50;
  36. font-weight: bold;
  37. }
  38. a:hover {
  39. color: #45a049;
  40. }
  41. </style>
  42. </head>
  43. <body>
  44. <div class="container">
  45. <h1>¡Bienvenido al Servidor Apache!</h1>
  46. <p>Este contenedor está funcionando correctamente en un entorno Debian.</p>
  47. <p>Explora más sobre Docker y Apache <a href="https://httpd.apache.org/">aquí</a>.</p>
  48. </div>
  49. </body>
  50. </html>
  51.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement