CSS COURSE • LESSON
🔗 CSS Links
Master CSS and create modern responsive websites with EDUHUB CODE HUB.
CSS Links
CSS can style different states of links.
a:link {
color:blue;
}
a:hover {
color:red;
}
a:visited {
color:purple;
}