-1

In my html code I have this line:

one two

The result is: enter image description here

Instead, I would like to make it with a style similar to this:

enter image description here

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?

user3766930
  • 5,629
  • 10
  • 51
  • 104

1 Answers1

3

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>
ab29007
  • 7,611
  • 2
  • 17
  • 43