should the logo be inside the ul in htm

Solutions on MaxInterview for should the logo be inside the ul in htm by the best coders in the world

showing results for - "should the logo be inside the ul in htm"
Giulia
02 Aug 2017
1<header role="banner">
2    <div class="logo"><a href="#"></a></div>
3    <h1>Company Name</h1>
4</header>
5<nav role="navigation">
6    <ul>
7        <li><a href="#">Home</a></li>
8        <li><a href="#">Shop</a></li>
9        <li><a href="#">Items</a></li>
10        <li><a href="#">Contact</a></li>
11    </ul>
12</nav>
13