Reply To: Using H tags and external style sheet

#18515
TSOP
Participant

This worked:

If you don’t want to use an H tag, you could use a P tag.

You can define a class in CSS external style sheet:

.more {
color: orange;
font-size: 18px;
}

And then use it in your page:

<p class=”more”>Further information</p>