+ 2
How to increase font size of a paragraph?
3 Antworten
+ 5
Use css.
+ 1
Thanks Anhjje
0
HTML
<p style="font-size: 15px"> lorem ipsum </p>
CSS
p{
font-size: 15px;
}
It is recommended to use em or rem instead of px.
Also, there's a multitude other ways to increase font size