Implementation overview
How to Use HTML5’s Semantic Tags For Better Architecture in Webflow?
Using HTML5’s semantic tags is essential for creating a well-structured website that enhances accessibility and SEO. Semantic tags like <header>, <nav>, <article>, and <footer> clearly define the different parts of your webpage, helping search engines understand the content and improving the overall user experience.
How to do it on Webflow?
Structure your page using the appropriate HTML 5 semantic tags in Webflow, ensuring each section is clearly identified and properly organized. This not only aids in search engine crawling but also makes your site more accessible to users with disabilities.
Webflow HTML5 tags include:
- <header> - Establishes header for the document or a section.
- <footer> - Establishes a footer for the document or section.
- <nav> - Specifies the navigation links in the document.
- <section> - Defines a section in the document, which the spec defines as "a thematic grouping of content, typically with a heading," similar to a chapter.
- <main> - Specifies the primary material of a document.
- <article> - Describes an article in the document.
- <aside> - Defines content other than the page content.
- <address> - Specifies the contact information for the author/owner of a document or article.
<figure> - Indicates self-contained material, such as illustrations, diagrams, pictures, and code blocks.