remove underline from links code example

Example 1: remove underline from link css

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
 }

Example 2: remove style from link

a, a:hover, a:focus, a:active {
     text-decoration: none;
     color: inherit;
 }

Example 3: how to remove underline from link in html

<body>
   <h2>About</h2>
   <p>
     <!-- Just add text decoration style:None -->
      Our <a href="" style="text-decoration: none;">Team</a>
   </p>
</body>

Example 4: how to remove underline from list item in html

text-decoration: none; /* remove underline in text ; put this style in <a>
container; ie : link's container */
list-style : none; /* remove bullet points from list */

Tags:

Html Example