I made an example of the full semantic markup of HTML a couple of years ago and posted it on github.
Take a look at the code https://github.com/samad-aghaei/Semantic-HTML5/blob/master/index.html
<nav>
<ul itemscope="itemscope" itemtype="http://schema.org/ItemPage">
<li>
<a itemprop="url" rel="nofollow" href="#" title="Facebook" class="icon-facebook">
</a>
</li>
<li>
<a itemprop="url" rel="nofollow" href="#" title="Twitter" class="icon-twitter">
</a>
</li>
<li>
<a itemprop="url" rel="nofollow" href="#" title="Google Plus" class="icon-gplus">
</a>
</li>
<li>
<a itemprop="url" rel="nofollow" href="#" title="LinkedIn" class="icon-linkedin">
</a>
</li>
<li>
<a itemprop="url" rel="nofollow" href="#" title="RSS Feed" class="icon-rss-1">
</a>
</li>
</ul>
source
share