what is generated from the following html code: <h1>hello</h1> <h3>hello</h3> <h6>hello</h6>

what is generated from the following html code: <h1>hello</h1> <h3>hello</h3> <h6>hello</h6>

what is generated from the following html code: <h1>hello</h1> <h3>hello</h3> <h6>hello</h6>

Answer

Brief Explanations:

In HTML, <h1> - <h6> are heading tags. <h1> is the largest - sized heading and <h6> is the smallest. The given code has three heading tags with the same text "Hello". When rendered, it will display "Hello" three times, with different font - sizes according to the heading level.

Answer:

The second option (where "Hello" is displayed three times with different font - sizes corresponding to <h1>, <h3>, and <h6>)