I have a headline:
<h1>THIS IS A HEADLINE</h1>
How do i make the phrase "THIS IS..." not to be bold and the rest without a change? couldn't find any relevent tag in text-decoration.
I have a headline:
<h1>THIS IS A HEADLINE</h1>
How do i make the phrase "THIS IS..." not to be bold and the rest without a change? couldn't find any relevent tag in text-decoration.
The heading looks bold because of its large size, if you have applied bold or want to change behaviour, you can do:
More: http://www.w3.org/TR/css3-fonts/#font-weight-prop
for "THIS IS" not to be bold - add
<span></span>
around the textand in style
I'm not sure if it was just for the sake of showing us, but as a side note, you should always set uppercase text with CSS :)