HTML - heading tag
Here you learn how to code the heading tag.
A heading tag is used to format a section heading on a page. There are six levels of headings in HTML with <H1> being the most important and largest heading and <H6> being the least important, and smallest, heading. HTML automatically adds an extra blank line before and after a heading. You can format the heading tags through your CSS file.Heading tag
PHP File
|
<html> <head> <title>HTML tutorial</title> </head> <body> <h1>Section Heading</h1> Content goes here. </body> </html> |
||
This is how it looks
Section Heading Content goes here. |
||
Bookmark this page: |








