Advertisement
Sergio_Istea

index.php

Nov 12th, 2024 (edited)
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 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>Página de Ejemplo</title>
  7. <style>
  8. /* Estilos básicos para una apariencia agradable */
  9. body {
  10. font-family: Arial, sans-serif;
  11. background-color: #f4f4f9;
  12. margin: 0;
  13. padding: 0;
  14. display: flex;
  15. justify-content: center;
  16. align-items: center;
  17. height: 100vh;
  18. color: #333;
  19. }
  20. .container {
  21. text-align: center;
  22. background-color: #fff;
  23. padding: 20px;
  24. border-radius: 8px;
  25. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  26. max-width: 500px;
  27. width: 90%;
  28. }
  29. h1 {
  30. color: #4CAF50;
  31. margin-bottom: 10px;
  32. }
  33. p {
  34. font-size: 1.1em;
  35. margin: 15px 0;
  36. }
  37. a {
  38. color: #4CAF50;
  39. text-decoration: none;
  40. font-weight: bold;
  41. }
  42. a:hover {
  43. text-decoration: underline;
  44. }
  45. </style>
  46. </head>
  47. <body>
  48. <div class="container">
  49. <h1>¡Bienvenido a Nuestra Página de Ejemplo!</h1>
  50. <p>Esta es una página de muestra generada por PHP. Es sencilla pero agradable a la vista.</p>
  51.  
  52. <?php
  53. // Obtener la fecha y hora actual
  54. $fechaActual = date("d-m-Y");
  55. $horaActual = date("H:i:s");
  56.  
  57. // Mostrar la fecha y hora actual
  58. echo "<p>Hoy es $fechaActual y la hora actual es $horaActual.</p>";
  59. ?>
  60.  
  61. <p>Para más información, visita nuestra <a href="#">sección de ayuda</a>.</p>
  62. </div>
  63. </body>
  64. </html>
  65.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement