I import fontawesome icons.
<script src="https://use.fontawesome.com/e5d9dacb14.js"></script>
Next, I have a hyperlink:
<a href="https://google.nl"> <i class="fa fa-user-o" ></i> Personal Page </a>
This hyperlink has the annoying underline, which I try to remove by following this answer.
To do so, I add this to my css.
a.nounderline {text-decoration: none; }
And I change the hyperlink to:
<a.nounderline href="https://google.nl"> <i class="fa fa-user-o" ></i> Personal Page </a.>
Now. This does remove the underline, but it also removed the hyperlink. See my jsfiddle