+ 2
heading is between h1 to h6
but i done h7 but output came why h7 came <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>this</h1> <h2>that</h2> <h3>how</h3> <h4>what</h4> <h5>when</h5> <h6>why</h6> <h7>whose</h7> </body> </html> output:- ______ this that how what when why whose
8 Answers
+ 11
Because web browser's and HTML interpreters are designed to understand some tags such as h1 to h6 with specific meanings. Other than that whatever it doesn't understand as a tag e.g <h7> or even your <name> it will display as normal text without disturbing the rest of the rendering order.
+ 6
I have just tried h7.
It is normal text, h6 is smaller.
It is does not have the same format as the 1-6 headings.
+ 4
@gunateja
Thanks I did not try it, before you asked this question.
+ 3
h tag maximum is h1 and Minimum is h6, h6 is small and h1 is big, but if you want more bigger, you can try to definition an css inline to h1.
example : <h1 style="font-size:60px"> it will biggee </h1>
+ 2
yes but i typed in structure but output came
+ 2
There is not h7 tag
đ
0
yes i know h7 not there in html but my questioning is why it's working
0
Reposted question.
I feel like I am the only person who cannot do it.