HTML Headings - chrisbitm/python GitHub Wiki
HTML headings are used to define the structure of a Webpage by organizing Content into Sections. There are six levels of headings in HTML, ranging from <h1>
to <h6>
.
<h1>This is Heading 1</h1>
<h2>This is Heading 2</h2>
<h3>This is Heading 3</h3>
<h4>This is Heading 4</h4>
<h5>This is Heading 5</h5>
<h6>This is Heading 6</h6>
These headings are not just for visual styling; they are also important for Accessibility and Search Engine Optimization (SEO). Screen readers use them to help visually impaired users navigate a page, and Search Engines use them to understand the Hierarchy and Content of a Page.