In what part of HTML5 semantics do I put a form?

3

At the top of the site I have a <form> fetch. In the semantics of HTML5 within which tag I put this <form> . Type: section, article, etc ...

<form name="buscaguia">
<input type="text" name="buscar" placeholder="Buscar no Guia Comercial">
<button type="submit">Pesquisar</button>
</form>
    
asked by anonymous 15.06.2017 / 19:57

1 answer

2

There is no exact place where you should put the form there is the contextualization of your form after all it is not contextual you put a form in a list of displaying items like a list of blogs. meaning you put the form in a place intended for adding and editing your blog.

    
15.06.2017 / 20:45