+ 8
Editing text in html
How do I underline the text, increase or decrease the size of it in html? I just learned the tags like <b> <big>, etc. But what if I wanna specify the size of the text, as in image? Thanks in advance. Kudos.
3 ответов
+ 5
Focus on css instead of html you will find a solution easily.
+ 27
<ins style=font:size:20px>Underlined & 20 pixel size</ins>
+ 6
Use css instead of tags. You can underline text in css with this code:
text-decoration: underline; :)
and for font size:
font-size: 14px;
and you have much more option using css instead of tags like you mention :)