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> | |
| <style> | |
| h1 { | |
| color: green; | |
| } | |
| </style> | |
| </head> | |
| <body> |
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
| <body> | |
| <h1>Family Tree</h1> | |
| <ul class="top-level"> | |
| <li>Fictional | |
| <ul id="fictional-list"> | |
| <li>Simpsons | |
| <ul class="family-members"> | |
| <li>Homer</li> | |
| <li>Lisa</li> | |
| <li>Bart</li> |
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> | |
| <meta charset="utf-8"> | |
| <title>CSS Selectors</title> | |
| <style> | |
| body { | |
| font: 1em "Comic Sans MS", san-serif; | |
| } | |
| .top-level { |
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> | |
| <meta charset="utf-8"> | |
| <title>Simple Example</title> | |
| <style> | |
| body { | |
| font: 2em "Comic Sans MS", san-serif; // A nice font | |
| color: red; | |
| } |
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> | |
| <meta charset="utf-8"> | |
| <title>P Colors (all real colors)</title> | |
| <style> | |
| body { | |
| color: PaleGoldenRod; | |
| } | |
| h1 { |
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
| /** namespace. */ | |
| var rh = rh || {}; | |
| rh.color = rh.color || {}; | |
| rh.color.rgb_to_hex_mode = true; | |
| rh.color.redValue = 181; | |
| rh.color.greenValue = 9; | |
| rh.color.blueValue = 57; | |
| rh.color.hexString = "#b50939"; |
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
| js_track.append(("JavaScript Basics - Coffee Counter", False, "/static/JavaScriptBasics/CoffeeCounter/coffee.html")) | |
| js_track.append(("JavaScript Basics - Color Converter Lab", False, "/static/JavaScriptBasics/ColorConverter/color_converter.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
| <!-- DONE: Add jQuery CDN script --> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
| <!-- DONE: Add js/coffee.js script --> | |
| <script type="text/javascript" src="js/coffee.js"></script> |
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
| js_track.append(("JavaScript Objects - Dice Without Friends", False, "/static/JavaScriptObjects/DiceWithoutFriends/play.html")) | |
| js_track.append(("JavaScript Objects - Lights Out", False, "/static/JavaScriptObjects/LightsOut/lightsout.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
| <script src="dwf_play_main.js"></script> | |
| <script src="Die.js"></script> | |
| <script src="DiceRound.js"></script> | |
| <script src="DiceRoundController.js"></script> | |
| <script src="DiceGameController.js"></script> | |