Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to remove the bold from a headline?

Tags:

css

xhtml

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.

like image 341
Asher Saban Avatar asked Nov 10 '11 11:11

Asher Saban


People also ask

How do you remove the bold from a label tag?

So, add a class "form-check-label" into your tag, it will be not bold.


1 Answers

The heading looks bold because of its large size, if you have applied bold or want to change behaviour, you can do:

h1 { font-weight:normal; } 

More: http://www.w3.org/TR/css3-fonts/#font-weight-prop

like image 148
Sarfraz Avatar answered Sep 23 '22 17:09

Sarfraz