Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="es">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Página de Ejemplo</title>
- <style>
- /* Estilos básicos para una apariencia agradable */
- body {
- font-family: Arial, sans-serif;
- background-color: #f4f4f9;
- margin: 0;
- padding: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100vh;
- color: #333;
- }
- .container {
- text-align: center;
- background-color: #fff;
- padding: 20px;
- border-radius: 8px;
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
- max-width: 500px;
- width: 90%;
- }
- h1 {
- color: #4CAF50;
- margin-bottom: 10px;
- }
- p {
- font-size: 1.1em;
- margin: 15px 0;
- }
- a {
- color: #4CAF50;
- text-decoration: none;
- font-weight: bold;
- }
- a:hover {
- text-decoration: underline;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <h1>¡Bienvenido a Nuestra Página de Ejemplo!</h1>
- <p>Esta es una página de muestra generada por PHP. Es sencilla pero agradable a la vista.</p>
- <?php
- // Obtener la fecha y hora actual
- $fechaActual = date("d-m-Y");
- $horaActual = date("H:i:s");
- // Mostrar la fecha y hora actual
- echo "<p>Hoy es $fechaActual y la hora actual es $horaActual.</p>";
- ?>
- <p>Para más información, visita nuestra <a href="#">sección de ayuda</a>.</p>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement