souligner le texte en html
<!-- Using 'u' tag we can draw underline below the text in HTML -->
<p>Hello all <u>Welcome here !!!</u></p>
Ankur
<!-- Using 'u' tag we can draw underline below the text in HTML -->
<p>Hello all <u>Welcome here !!!</u></p>
<!-- Here are two ways to underline text in HTML -->
<!--Method 1-->
<p>The deer started <u>running</u> </p> <!--"Running" is underlined.-->
<!--Method 2-->
.myStyle { <!--CSS-->
text-decoration: underline;
}
<p>The deer started <span style="myStyle">running</span> </p> <!--HTML-->
<u> text </u>
<u>underline</u>