underline word in css code example
Example 1: line through in css
x {
text-decoration: line-through;
}
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: css line under text
text-decoration: underline;