02-html.php 399 B

12345678910111213141516171819
  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><?php echo 'Título de la página web' ?></title>
  7. </head>
  8. <body>
  9. <h1><?= 'Título principal de la página web' ?></h1>
  10. <?php
  11. $x = 3;
  12. $y = 5;
  13. echo "x: {$x}<br>";
  14. echo "y: {$y}";
  15. ?>
  16. </body>
  17. </html>