About Lesson
a : link– इस selector को link की normal state को design करने के लिए use किया जाता है। ये वो state होती है जब link को एक बार भी visit नहीं किया गया है।
a : link– This selector is used to design the normal state of the link. This is the state when the link has not been visited even once.
Example
<html> <head> <title> a : link demo</title> <style> a:link { color:red; } </style> </head> <body> <a href=”https://nielitexam.co.in”>AK IT SOLUTION</a> </body> </html> |