CSS

CSS – Links

CSS – Links

Links can be styled in numerous ways in CSS. Links are styled differently based on the state the links are in. Those states are:

  • a:link
  • a:visited 
  • a:hover 
  • a:active 
Syntax:
<!DOCTYPE html>
<html lang="en">
<head>
    <style>
        /* unvisited link */
a:link {
  color: red;
}

/* visited link */
a:visited {
  color: green;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: blue;
}

    </style>
</head>
<body>
    <div>
        <a href="https://www.greatlearning.in" target="_blank">Great Learning</a>
    </div>
</body>
</html>
Output:





Top course recommendations for you

    Circular Queue
    1 hrs
    Beginner
    3.1K+ Learners
    4.49  (203)
    Python Stack
    2 hrs
    Beginner
    5.3K+ Learners
    4.43  (216)
    AI and Big Data in IOT
    1 hrs
    Intermediate
    9.2K+ Learners
    4.48  (687)
    Selenium Basics
    1 hrs
    Beginner
    24.2K+ Learners
    4.43  (1552)
    Selenium with Python
    1 hrs
    Beginner
    12.6K+ Learners
    4.43  (689)
    Selenium Projects with Python
    2 hrs
    Intermediate
    8.5K+ Learners
    4.51  (212)
    Java Projects
    1 hrs
    Beginner
    23.5K+ Learners
    4.21  (230)
    JDBC in Java
    1 hrs
    Beginner
    8.6K+ Learners
    4.43  (501)
    Flask Python
    1 hrs
    Beginner
    7.7K+ Learners
    4.36  (361)
    Linked List in Python
    3 hrs
    Beginner
    2.8K+ Learners
    4.54  (57)