is a section element is just a formatted div? and are many of the newly introduced tags in HTML5 are just formatted divs? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

is a section element is just a formatted div? and are many of the newly introduced tags in HTML5 are just formatted divs?

It seems to me that many of the newly introduced tags in HTML5 are just formatted divs or some sort of derivative with added classes? is this is really the case?

11th Oct 2019, 8:51 AM
Mikhail Roshal
Mikhail Roshal - avatar
1 Answer
+ 2
Nowadays most people (me included) use often use div elements as a container for everything. Yet other container tags for specific purposes should be preferred if they make sense. A nav bar should use nav elements, a section should be implemented with an article or a section tag. This doesn't change to look and feel for most people however it helps the browser to understand your website and to improve accessibility. The MDN is a good resource, too: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/section E.g. look at the usage notes and examples at the end :)
11th Oct 2019, 9:10 AM
Aaron Eberhardt
Aaron Eberhardt - avatar