Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
1
respuesta

Lo que hicimos en el aula

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>IMPRIMIR EDADES / 2</title>
    <style>
        body {
            background-color: lightgray; 
        }

        h1 {
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        }

        p {
            font-family: 'Courier New', Courier, monospace;
        }
    </style>
  </head>

  <body>

    <script>

      function saltarLinea() {
        document.write("<big><br><br><br><hr><br><br></big>");

      }

      function imprimir(frase) {
        document.write(frase);
        saltarLinea();
      }

      var anho = 2025;
      imprimir("<h1>hola amigos</h1>");
      // este código calcula las edades de Juan, Pedro y Carlos
      imprimir("<p>Juan tiene: " + (anho - 2000) + " años</p>");
      imprimir("<p>Pedro tiene: " + (anho - 1995) + " años</p>");

      anho = 2030;
      imprimir("<p>Carlos tiene: " + (anho - 2005) + " años</p>");

    </script>

  </body>

</html>
1 respuesta

Hola Roberto, espero que esté bien.

Gracias por compartir tu código con nosotros.

Si tienes alguna pregunta sobre el contenido de los cursos, estaremos aquí para ayudarte.

Si este post te ayudó, por favor, marca como solucionado ✓. Continúa con tus estudios