Advertisement
Sergio_Istea

pagina test backend

Jun 6th, 2024
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 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>Servidor Backend Funcionando</title>
  7. <style>
  8. body {
  9. display: flex;
  10. justify-content: center;
  11. align-items: center;
  12. height: 100vh;
  13. margin: 0;
  14. font-family: Arial, sans-serif;
  15. background-color: #f0f0f0;
  16. color: #333;
  17. }
  18. .container {
  19. text-align: center;
  20. background: #fff;
  21. padding: 2em;
  22. border-radius: 8px;
  23. box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  24. }
  25. h1 {
  26. color: #4CAF50;
  27. }
  28. p {
  29. margin: 0.5em 0;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <div class="container">
  35. <h1>¡Servidor Backend Funcionando!</h1>
  36. <p>Tu servidor está corriendo correctamente.</p>
  37. <p>¡Todo está listo para comenzar a trabajar!</p>
  38. </div>
  39. </body>
  40. </html>
  41.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement