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