Created
October 29, 2017 18:38
-
-
Save greeneggsandmushrooms/c0d37a3f44883616eb42754675da24b1 to your computer and use it in GitHub Desktop.
// source http://jsbin.com/xaqiva
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> | |
<title></title> | |
<style id="jsbin-css"> | |
a:link{color:orange;} | |
a:hover{font-family:courier;} | |
a:active{font-size:50px;} | |
a:visited{font-family:impact;} | |
</style> | |
</head> | |
<body> | |
<a href="http://cnn.com">This is CNN</a> | |
<script id="jsbin-source-css" type="text/css">a:link{color:orange;} | |
a:hover{font-family:courier;} | |
a:active{font-size:50px;} | |
a:visited{font-family:impact;}</script> | |
</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
a:link{color:orange;} | |
a:hover{font-family:courier;} | |
a:active{font-size:50px;} | |
a:visited{font-family:impact;} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment