Created
November 10, 2013 21:47
-
-
Save raymondfeng/7404400 to your computer and use it in GitHub Desktop.
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 { | |
| font-size: 200%; | |
| color: rgb(0,128,0); | |
| } | |
| h1 { | |
| border:5px solid red; | |
| box-shadow: 10px 10px 5px #888888; | |
| } |
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> | |
| <body> | |
| <h1>Links</h1> | |
| <ul> | |
| <li><a href='JSExamples'>Java Script Examples</a> | |
| <li><a href='JSBasics'>Java Script Basics</a> | |
| <li><a href='examples'>Examples for JavaScript</a> | |
| <li><a href='http://jsbin.com'>jsbin</a> | |
| <li><a href='http://jsfiddle.net/'>jsfiddle</a> | |
| <li><a href='http://www.codecademy.com'>codecademy</a> | |
| <li><a href='https://www.khanacademy.org/cs/programming'>khan-academy</a> | |
| <li><a href='http://codecombat.com/'>codecombat</a> | |
| <li><a href='http://www.w3schools.com/js/'>W3 Schools - JavaScript</a> | |
| <li><a href='https://www.youtube.com/watch?v=-tR7QtRYAyA'>jsbin video</a></li> | |
| </ul> | |
| </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
| var items = document.getElementsByTagName('li'); | |
| alert(items.length); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment