Tagged Questions
6
votes
1answer
174 views
Where do you draw the line with the new html5 elements
I have read this article http://diveintohtml5.org/semantics.html#new-elements on the different new elements in html5. Now I want to create my new portfolio with the this new markup. It is quite ...
4
votes
4answers
3k views
HTML5 Semantics - H1 or H2 for ARTICLE titles in a SECTION
It's my understanding (based from this chapter of Dive into HTML5: http://goo.gl/9zliD) that it can be considered semantically appropriate to use H1 tags in multiple areas of the page, as a method of ...
4
votes
2answers
2k views
Should menu titles (h1, h2, h3…) be inside or outside the <nav> tag?
Let's say I want to write a simple menu in HTML5.
Should I write like this:
<h1>My Menu</h1>
<h2>Submenu 1</h2>
<nav>
<ul>
<li><a ...