195k views
0 votes
In the header element, insert a navigation list containing an unordered list with the items: Home, Race Info, and FAQ. Link the items to the dr _index.html, dr_info.html, and dr_ faq.html files respectively.

Home
Race info
FAQ

1 Answer

7 votes

Answer:

Step-by-step explanation:

The following is a barebones HTML document that contains the Unordered List inside the header tag as requested. The list items are also wrapped around links so that they link to the requested pages and take you there when they are clicked. These html files need to be in the same folder as this code in order for it to take you to those pages. The code can be seen below.

<!DOCTYPE html>

<html>

<head>

<ul>

<li><a href="dr _index.html">Home</a></li>

<li><a href="dr_info.html">Race Info</a></li>

<li><a href="dr_ faq.html">FAQ</a></li>

</ul>

</head>

<body>

</body>

</html>

In the header element, insert a navigation list containing an unordered list with-example-1
User Rld
by
6.3k points