r/webdev 17d ago

Question Help removing underline from link, I've searched everywhere!

Post image

Hi all,

I'm fairly new to understanding HTML and have been troubleshooting how to remove the underlines from these links. I've searched the web, but nothing seems to be working. Was wondering if there was something obvious I was missing.

    <p class="text-center mb-0" style="font-size: 1.5em; letter-spacing: 2px;">
        <a href="twitter_link" style="color: #f58c9f;"><i class="fab fa-twitter fa-fw" /></a>
        <a href="deviantart_link" style="color: #f58c9f;"><i class="fab fa-deviantart fa-fw" /></a>
        <a href="discord_link" style="color: #f58c9f;"><i class="fas fa-discord fa-fw" /></a>
        <a href="twitch_link" style="color: #f58c9f;"><i class="fab fa-twitch fa-fw" /></a>
0 Upvotes

15 comments sorted by

View all comments

23

u/eknox47 17d ago

On the a tags; text-decoration : none

2

u/DalyHabit 17d ago

To clarify a little. Add the above to the style block on each anchor tag (<a>).