Check out example codes for "how to remove underline from link in html". It will help you in understanding the concepts better.
Code Example 1
<body>
<h2>About</h2>
<p>
<!-- Just add text decoration style:None -->
Our <a href="" style="text-decoration: none;">Team</a>
</p>
</body>
Code Example 2
<a style="text-decoration: none;"></a>
Code Example 3
<a href="http://yoursite.com/" style="text-decoration:none">yoursite</a>
Code Example 4
a:link - a normal, unvisited link
a:visited - a link the user has visited
a:hover - a link when the user mouses over it
a:active - a link the moment it is clicked
Code Example 5
text-decoration:none;
Learn ReactJs, React Native from akashmittal.com