-
use the Mozilla Developer Network HTML reference [0] to identify and use basic HTML tags
-
translate HTML tags like <div>, <p> into real world structures
Comment:
Hi-
In reviewing the code you have posted on your blog, it looks good overall.
I noticed you have <li> elements within your <nav> element. Really, they must be inside of an <ol> or <ul> element, which can then be inside the <nav>, like so:
<nav>
<ul>
<li>...</li>
</ul>
</nav>