Within the header element, insert a navigation list (nav element contaning an unordered list, ul, and accociated items, li) with links to jtc_index.html and jtc_services.html file. The text of the links should be home and services respectively.

Respuesta :

Answer:

Please see answer below and a screenshot of how it looks in the browser is attached.

Explanation:

<!DOCTYPE html>

<html>

   <head>

    <title>Navigation</title>

   </head>

   <body>

    <header>

     <nav>

      <ul>

       <li><a href="jtc_index.html">Home</a></li>

       <li><a href="jtc_services.html">Services</a></li>

      </ul>

     </nav>

    </header>

   </body>

</html>

Ver imagen ukshedrack