If you want the underline of some text to be a squiggly line, you can use the following css:
span {
text-decoration-line: underline;
text-decoration-style: wavy;
text-decoration-color: red;
}
Example text here
Source: https://developer.mozilla.org/en/docs/Web/CSS/text-decoration-line#example