Advertisement
sergio_educacionit

Laboratorio: proxy reverso 'index.html'

Aug 1st, 2024
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 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 Backend</title>
  7. <style>
  8. body {
  9. font-family: 'Arial', sans-serif;
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. height: 100vh;
  14. margin: 0;
  15. background: linear-gradient(135deg, #667eea, #764ba2);
  16. color: #ffffff;
  17. }
  18. .container {
  19. text-align: center;
  20. max-width: 600px;
  21. padding: 20px;
  22. background-color: rgba(0, 0, 0, 0.5);
  23. border-radius: 10px;
  24. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  25. }
  26. h1 {
  27. font-size: 3em;
  28. margin-bottom: 10px;
  29. }
  30. p {
  31. font-size: 1.2em;
  32. margin-bottom: 20px;
  33. }
  34. .button {
  35. display: inline-block;
  36. padding: 10px 20px;
  37. font-size: 1.2em;
  38. color: #ffffff;
  39. text-decoration: none;
  40. border: 2px solid #ffffff;
  41. border-radius: 5px;
  42. transition: background-color 0.3s, color 0.3s;
  43. }
  44. .button:hover {
  45. background-color: #ffffff;
  46. color: #764ba2;
  47. }
  48. </style>
  49. </head>
  50. <body>
  51. <div class="container">
  52. <h1>¡Bienvenido al Backend!</h1>
  53. <p>El servidor proxy está funcionando correctamente y ha direccionado tu solicitud a este backend.</p>
  54. <a href="#" class="button">Más Información</a>
  55. </div>
  56. </body>
  57. </html>
  58.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement