Add different styles to hyperlinks using CSS


To set different styles to hyperlinks, such as font-size, background color, etc, you can try to run the following code:

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         a.first:link {color:#ff0000;}
         a.first:visited {color:#0000ff;}
         a.first:hover {color:#ffcc00;}
         a.second:link {color:#ff0000;}
         a.second:visited {color:#0000ff;}
         a.second:hover {font-size:150%;}
         a.third:link {color:#ff0000;}
         a.third:visited {color:#0000ff;}
         a.third:hover {background:#66ff66;}
      </style>
   </head>
   <body>
      <p>Mouse over the below given links:</p>
      <p><b><a class = "first" href = "demo1.html" target = "_blank">Link changes color</a></b></p>
      <p><b><a class = "second" href = "demo2.html" target = "_blank">Link changes font-size</a></b></p>
      <p><b><a class = "third" href = "demo3.html" target = "_blank">Link changes background-color</a></b></p>
   </body>
</html>

Updated on: 22-Jun-2020

204 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements