Hello,
in the text, "Hello! My name is John " is set to the size of h1. I want to change the text "my name" on a smaller size on h4.
Kamila
<h1 class="gkAnimate active">Hello!<br>My name<br>is John</h1>
Oscar E wrote:Because if we talk about header , the whole area is inside one <h1><h1 class="gkAnimate active">Hello!<br>My name<br>is John</h1>
What means that by default in CSS you cannot reduce font size for selected element.
but there is one trick...
<h1 class="gkAnimate active">Hello!<br /><span style="font-size: 50%;">My name</span> <br />is John</h1>