1 a, a:hover, a:focus, a:active {
2 text-decoration: none;
3 color: inherit;
4 }
1<body>
2 <h2>About</h2>
3 <p>
4 <!-- Just add text decoration style:None -->
5 Our <a href="" style="text-decoration: none;">Team</a>
6 </p>
7</body>
1<a style="text-decoration:none" href="http://Example.Microsoft.Com">nonunderlinedhyperlink</a>
1a:link - a normal, unvisited link
2a:visited - a link the user has visited
3a:hover - a link when the user mouses over it
4a:active - a link the moment it is clicked
5
6a:link {
7 text-decoration: none;
8}
9
10a:visited {
11 text-decoration: none;
12}
13
14a:hover {
15 text-decoration: underline;
16}
17
18a:active {
19 text-decoration: underline;
20}