How can I make another heading in HTML?
I have used , , , ,
You can declare this in your stylesheet
h7, h8, h9 { /* You can just go on adding headings */
display: block; /* Because this is block level element */
}
h7 {
font-size: /*Whatever */ ;
}
h8 {
font-size: /*Whatever */ ;
}
But I would suggest you not to do so, as it doesn't carry any semantic meaning, also it will be bad from SEO point of view
Also take a look at html5shiv, just add the elements you want in the script