हाइपरलिंक के लिए विभिन्न शैलियों को सेट करने के लिए, जैसे कि फ़ॉन्ट-आकार, पृष्ठभूमि का रंग, आदि, आप निम्न कोड को चलाने का प्रयास कर सकते हैं:
उदाहरण
<!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>