Created
May 30, 2017 06:11
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment