Computer Science, asked by 33908291nelu, 5 months ago

What is the significance leading
tags? give example​

Answers

Answered by shrashtiyadav
2

Answer:

The names of tags and attributes are not case sensitive: they may be in lower, upper , or mixed case with exactly the same meaning.

Answered by Anonymous
2

Answer:

Explanation:

The heading tag is used in HTML to define headings of a page. Headings are defined by <hn> , with “n” being a number between 1 and 6, and determines which position a heading has in the hierarchy of the heading structure.

Examples of heading tags

A heading with two sub-headings would look like this:

<h1>This is a heading</h2>

<h2>This is a sub-heading</h2>

<h3>This is a third sub-heading</h3>

Every heading tag must be closed accordingly, and the content is written between the tags.

Similar questions