Should I use a HTML5 specific tag for my search on my new site so I can remain semantically correct?
My site’s structure is something like this
--------------------
Header
--------------------
search | nav
--------------------
article
--------------------
footer
--------------------
This is my concern mostly because the search plays an important role on this page.
You can use:
Searching is a way of navigating a website, so you could just add it to the
<nav>element.In this case, the
<nav>element could be a child element of the<header>, just like the last example in the spec.