1<!-- Using 'u' tag we can draw underline below the text in HTML -->
2<p>Hello all <u>Welcome here !!!</u></p>
1<!-- Here are two ways to underline text in HTML -->
2
3<!--Method 1-->
4<p>The deer started <u>running</u> </p> <!--"Running" is underlined.-->
5
6<!--Method 2-->
7.myStyle { <!--CSS-->
8 text-decoration: underline;
9}
10
11<p>The deer started <span style="myStyle">running</span> </p> <!--HTML-->
1Ex. Underline word "parragraph" using 'u' tag:
2
3<p>This is a <u>parragraph</u>.</p>