Search code examples
htmlcssseo

h1 tag class (alternate)


I know that h1 tag is important for SEO, so all my title is H1 (bravo!)

Now, I need to have a title (as the first line of a text ) a little different on some pages.

Usually, I just duplicate h1 as h2 and alternate.

The question: Is it possible to add a class to the title tag... (I have try without success)


Solution

  • Sure you can:

    <h1 class="someclass">…</h1>
    

    The class attribute is a in the attribute group coreattrs of core attributes that can be used with the h1 element.