Computer Science, asked by karthikkennedy125, 1 year ago

What is navigation? discuss the characteristics of effective navigation. also write code of the html page to open a link in a new browser window?

Answers

Answered by Anonymous
8
Navigation is often taken for granted, but it plays a crucial role in getting site visitors to view more than just the home page. If navigation choices are unclear, visitors may elect to hit the “Back”
button on their first (and final) visit to a Web site. Once they enter, the real challenge begins, as it is no easy task to allow first-time visitors to get take maximum advantage of a site.

Code:

<nav>
    <a href="#" taget="_blank">Home</a>
    <a href="#" taget="_blank">About us</a>
    <a href="#" taget="_blank">Services</a>
    <a href="#" taget="_blank">Contact us</a>
</nav>
Similar questions