cool underline style code example
Example 1: css underline color
u
{
text-decoration: underline;
text-decoration-color: red;
}
example of use: (in html)
The word CAT, is underlined
Example 2: how to underline text in css
h3 {
text-decoration: underline;
}