p tag font style and size code example
Example 1: make text bigger html5
p {
font-size: 15px;
}
p {
font-size: large;
}
p {
font-size: 150%;
}
Example 2: how to change font in html
<font face="yourfont">
Lorem Ipsum
</font>
p {
font-size: 15px;
}
p {
font-size: large;
}
p {
font-size: 150%;
}
<font face="yourfont">
Lorem Ipsum
</font>