+ 2
HTML text size
how can I change the size of a text in a paragraph in html?
4 Answers
+ 8
It is deprecated now. It's better to start using CSS now.
+ 7
You can do:
<p style='font-size:45px'>Blah blah blah</p>
For easiness
+ 4
use CSS, eg. to change size of para to 20px-
p {
font-size:20px;
}
+ 2
can't I do that just in html directly?