Skip to content

Instantly share code, notes, and snippets.

@supercodingninja
Created May 30, 2017 06:11
Show Gist options
  • Save supercodingninja/d6ccbc8593da05242c4a175cad45fbfe to your computer and use it in GitHub Desktop.
Save supercodingninja/d6ccbc8593da05242c4a175cad45fbfe to your computer and use it in GitHub Desktop.
HTML & CSS_Pseudo Selectors_Links_Codcademy created by supercodingninja - https://repl.it/IXII/0
a:link {
text-decoration: none;
color: #008B45;
}
a:hover {
color: #00FF00;
}
a:visited {
color: #EE9A00;
}
a:first-child {
color: #CDBE70;
}
a:nth-child(2) {
font-family: Tahoma;
}
a:nth-child(3) {
color: #FFC125;
}
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title>The Super Coding Ninja</title>
</head>
<body>
<div>
<a href="https://github.com/">
</a>
<a href="https://github.com/supercodingninja">
</a>
<a href="https://github.com/supercodingninja/CSS-Selectors_Codecademy">
</a>
</div>
</body>
</html>
Empty file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment