heading is between h1 to h6 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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

11th May 2017, 4:10 PM
gunateja
gunateja - avatar
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.
9th May 2017, 4:57 PM
Ashwani Kumar
Ashwani Kumar - avatar
+ 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.
9th May 2017, 4:35 PM
Manual
Manual - avatar
+ 4
@gunateja Thanks I did not try it, before you asked this question.
9th May 2017, 4:36 PM
Manual
Manual - avatar
+ 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>
9th May 2017, 4:39 PM
Agung Ramadhan Putra
Agung Ramadhan Putra - avatar
+ 2
yes but i typed in structure but output came
9th May 2017, 4:32 PM
gunateja
gunateja - avatar
+ 2
There is not h7 tag 😁
9th May 2017, 4:58 PM
⏩▶Clau◀⏪
⏩▶Clau◀⏪ - avatar
0
yes i know h7 not there in html but my questioning is why it's working
10th May 2017, 4:35 PM
gunateja
gunateja - avatar
0
Reposted question. I feel like I am the only person who cannot do it.
11th May 2017, 4:08 PM
Manual
Manual - avatar