Use the right element for the right job (HTML 5!)
Every single page starts with an H1 and subsequent Hx elements follow in the proper order
Disable CSS and check the page flow
<img src="logo.png" alt="Weathervane Seafood Restaurants">
<svg role="img" aria-labelledby="title desc" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 34 34">
<title id="title">Back</title>
<desc id="desc">A leftward arrow</desc>
<path role=presentation>
...
</path>
</svg>
<ul class="menu" role="menubar">
<li class="menu-item" role="menuitem">
...
<!-- No! -->
<button><span class="icon-email"></span></button>
<!-- Yes! -->
<button aria-label="Email">
<span class="icon-email"></span>
</button>