HTML Headings
HTML headings are used to define the titles or subtitles of a webpage. There are six levels of headings, ranging from <h1>
to <h6>
. The <h1>
tag is used for the most important heading, and <h6>
is used for the least important heading. The headings are displayed in descending order of size, with <h1>
being the largest.
Example of all heading levels:
html<!DOCTYPE html>
<html>
<head>
<title>HTML Headings Example</title>
</head>
<body>
<h1>This is an H1 heading</h1>
<h2>This is an H2 heading</h2>
<h3>This is an H3 heading</h3>
<h4>This is an H4 heading</h4>
<h5>This is an H5 heading</h5>
<h6>This is an H6 heading</h6>
</body>
</html>
In this example, the <h1>
heading will be the largest, and the <h6>
heading will be the smallest. The size and style of these headings can be further customized using CSS, but by default, each level of heading has its own font size and weight.
No comments:
Post a Comment