+ 2
what is the html tag to underline a text??
4 Respuestas
+ 3
You could use the HTML <u> tag, but it's better to use a CSS attribute for underlining text:
text-decoration: underline
+ 1
<ins>text</ins>
0
thanks but is there any difference between <u> and <ins> tags?
0
Similar to other HTML tags, it helps document what you meant when you developed the script.
The <ins> tag marks text added later on to the original text and <u> marks text with a different formatting.