Site logo

Archived topic

Using heading class in paragraph

1 reply · Started by Matthew on July 29, 2019

Viewing posts 1–2 of 2

Can I get the H3 heading formatting while using a <p> tag?

Something like <p class="H3">Title of something</p>

Hi there,

unfortunately not - you would need to create a custom class and style that with CSS eg.

HTML
<p class="custom-headline">Title of something</p>

CSS

p.custom-headline {
    font-family: font-name;
    font-size: 22px;
    font-weight: 600px;
    color: #222;
}
This archived topic is closed to new replies.