HTML5

Un lenguaje en el que se escriben las páginas Web, que permite hacer enlaces (hipertexto) y que es leído por los navegadores para poder mostrar la información en la pantalla de tu ordenador de una forma correcta.

Por ejemplo, el lenguaje HTML5 indica al navegador cuando un texto tiene un enlace y también la dirección URL a la que tiene que dirigirse si se hace click sobre el link. css2

ESTRUCTURA HTML

<section>
    <h1>Forest elephants</h1>
      <section>
          <h1>Introduction</h1>
          <p>In this section, we discuss the lesser known forest elephants.
      </section>
      <section>
        <h1>Habitat</h1>
        <p>Forest elephants do not live in trees but among them.
      </section>
      <aside>
        <p>advertising block
      </aside>
</section>
<footer>
  <p>(c) 2010 The Example company
</footer>