How to make new heading tag numbers such as h7, h8, etc.?

后端 未结 6 652
耶瑟儿~
耶瑟儿~ 2020-12-11 06:06

How can I make another heading in HTML?

I have used

,

,

,

,

6条回答
  •  不思量自难忘°
    2020-12-11 06:15

    On another of my questions, which was completely unrelated, i received an answer to this question:


    You can't make a heading 7, because there's only six different HTML headings (h1, h2, h3, h4, h5 and h6; reference: http://www.w3schools.com/tags/tag_hn.asp), but you can make a heading 6 with this CSS code:

    h6.special { color:#464646; outline:0;
        font-family:Raleway, sans-serif; font-size:17px; }
    

    and this HTML code:

    I am special!






    This solution does not damage seo and is fairly simple. I just though I should let everyone know. As a side question, can you change the "special"? Say if i changed it to

    h6.raleway { color:#464646; outline:0;
        font-family:Raleway, sans-serif; font-size:17px; }
    

    and this HTML code:

    I am raleway!

    Would this work? Thanks again for all you answers!

提交回复
热议问题