Difference between semantic and non-semantic elements
semantic elements Elements has meaning. Describes its meaning to browser and developer. Example [crayon-6a32cfabd6c3b975997027/] Some of semantic elements <section> - <section> element is grouping content. We can split page into different sections. [crayon-6a32cfabd6c41773495089/] <article> - <article> element is independent and has self-contained content. <article> element used to write Forum post, Blog post, Newspaper article. [crayon-6a32cfabd6c44528676398/] <header> - <header> element specifies header
Read more