175k views
2 votes
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.

User Jvdmr
by
5.1k points

1 Answer

3 votes

Answer:

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

Step-by-step 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>

Within the header element, insert a navigation list (nav element contaning an unordered-example-1
User Carlost
by
5.7k points