Style a link

An HTML link looks like this.

Blue has been a standard link style for a very long time. Visited links are purple.

Here is the html code:

<a href="https://andrewsclasses.info">Link to my classes</a>

Text color

You can quickly override the link color with some css:

.custom-link {
  color: #00FF00;
}

Now it looks green.

Custom link

Button

.button {
  border: 1px solid black;
}

Button 

Classes