Links can be styled with any CSS property, such as ```color```, ```font-family```, ```font-size```, and ```padding```.
Here is an easy example:
```css
a {
color: hotpink;
}
```
## In addition, links can be styled differently depending on what state they are in.
Links also have 4 states, and many programmers style each state differently.
The four states are:
* ```a:link```: an unvisited, unclicked link
* ```a:visited```: a visited, clicked link
* ```a:hover```: a link when the user's mouse is over it
* ```a:active```: a link when it is clicked
The `<a href="">` property is responsible for creating URLs and can be modified using a number of CSS styling properties, although it has a few by default: