Which of the following is the CORRECT HTML tag for the smallest size heading?
Which of the following is the CORRECT HTML tag for the smallest size heading? Correct Answer <h6>
The HTML <h1> to <h6> tag is used to define headings in an HTML document.
<h1> defines largest heading and <h6> defines smallest heading.
Additional Information
The HTML < head > element is a container for the following elements: < title >, < style >, < meta >, < link >, < script >, and < base >.
|
Tag |
Description |
|
< head > |
Defines information about the document |
|
< title > |
Defines the title of a document |
|
< base > |
Defines a default address or a default target for all links on a page |
|
< link > |
Defines the relationship between a document and an external resource |
|
< meta > |
Defines metadata about an HTML document |
|
< script > |
Defines a client-side script |
|
< style > |
Defines style information for a document |