How To Change Font Size In Html String?
I used an online HTML maker to get this
A canyon
Solution 1:
You can put an actual value in the font-size
property, for example font-size:48px
. If you put in a large enough number, it should show up larger than using x-large
.
Solution 2:
why do you have you "\" before quote? Shouldn't it be :
<spanstyle="font-family:arial,helvetica,sans-serif;font-size:x-large;color:#993300;">
Solution 3:
There are two ways to approach this.
The first way is deprecated so you should not use this method:
<font size="5" face="arial" color="red">
HTML is responsible for layout and thus including design and formatting is not good.
The second way is manipulation via css:
h1 {font-size:250%}
Instead of percentages, you can use px for pixels.
Good luck!
Post a Comment for "How To Change Font Size In Html String?"