html underline code example
Example 1: how to underline font in css
h3 {
text-decoration: underline;
}
Example 2: underline text in html
<!-- Using 'u' tag we can draw underline below the text in HTML -->
<p>Hello all <u>Welcome here !!!</u></p>
Example 3: html underline tag
Ex. Underline word "parragraph" using 'u' tag:
<p>This is a <u>parragraph</u>.</p>
Example 4: line under text html
<u> text </u>
Example 5: html u tag
<p>This text is not underlined</p><u>This text is underlined</u>