In my html code I have this line:
one two
Instead, I would like to make it with a style similar to this:
so that the first word is big and bold, and the second one is normal - how can I merge two styles in a single h4
header?
In my html code I have this line:
one two
Instead, I would like to make it with a style similar to this:
so that the first word is big and bold, and the second one is normal - how can I merge two styles in a single h4
header?
Use span
tag. You can read more about them here: http://www.w3schools.com/TAGS/tag_span.asp
h4 span{
font-size:2em;
}
<h4><span>Big</span> Normal</h4>