(Choose
1 answer)
A. <head>
Which is the best/proper way to declare the header for a page?
<h1>Mister Rogers</h1>
<nav>
<a href="one.html">one</a>
<a href="two.two.html">two</a>
<a href="three.html">three</a>
<a href="songs.html">Songs</a>
</nav>
</head>
B. <div id = "header">
<h1>Mister Rogers</h1>
<div id = "nav">
<a href="one.html">one</a>
<a href="two.two.html">two</a>
<a href="three.html">three</a>
<a href="songs.html">Songs</a>
</div>
</div>
C. <header>
<h1>Mister Rogers</h1>
<nav>
</header>
<a href="one.html">one</a>
<a href="two.two.html">two</a>
<a href="three.html">three</a>
<a href="songs.html">Songs</a>
</nav>