Advertisement
sergio_educacionit

cloudapp.html

Feb 13th, 2025
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 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>Git y Despliegue en la Nube</title>
  7. <style>
  8. body {
  9. font-family: Arial, sans-serif;
  10. background-color: #f4f4f4;
  11. margin: 0;
  12. padding: 0;
  13. display: flex;
  14. justify-content: center;
  15. align-items: center;
  16. height: 100vh;
  17. }
  18. .container {
  19. background: white;
  20. padding: 20px;
  21. border-radius: 10px;
  22. box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  23. max-width: 600px;
  24. text-align: center;
  25. }
  26. h1 {
  27. color: #333;
  28. }
  29. p {
  30. color: #555;
  31. line-height: 1.6;
  32. }
  33. .highlight {
  34. color: #007bff;
  35. font-weight: bold;
  36. }
  37. </style>
  38. </head>
  39. <body>
  40. <div style="background: #000; color: #fff; text-align: center; padding: 15px; font-size: 18px; font-weight: bold; border-bottom: 3px solid #ff0000;">
  41. ⚠️ Advertencia: Este contenido ha sido generado por una IA y puede contener imprecisiones. No sigas estos pasos sin verificarlos en tu sistema. ⚠️
  42. </div>
  43. <div class="container">
  44. <h1>📌 Git y el Despliegue en la Nube</h1>
  45. <p><span class="highlight">Git</span> es un sistema de control de versiones que permite a los desarrolladores gestionar el historial de cambios en su código, colaborar en equipo y mantener diferentes versiones de un proyecto de manera eficiente.</p>
  46. <p>El <span class="highlight">despliegue en la nube</span> se refiere al proceso de publicar y ejecutar aplicaciones en servidores remotos, utilizando plataformas como AWS, Google Cloud o Heroku. Esto permite que las aplicaciones sean accesibles desde cualquier parte del mundo con alta disponibilidad y escalabilidad.</p>
  47. </div>
  48.  
  49. </body>
  50. </html>
  51.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement