Last active
April 11, 2018 01:04
-
-
Save todd-lm/c0355d5c371ba424ece76d838693aa81 to your computer and use it in GitHub Desktop.
JS Bin// source http://jsbin.com/deyapah
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"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| <style id="jsbin-css"> | |
| div { | |
| height: 100px; | |
| } | |
| #one { | |
| background-color: red; | |
| } | |
| #two{ | |
| background-color: green; | |
| } | |
| #three { | |
| background-color: blue; | |
| } | |
| #four{ | |
| background-color: red; | |
| } | |
| #five { | |
| background-color: green; | |
| } | |
| #six { | |
| background-color: blue; | |
| } | |
| #flag { | |
| font-family: Arial; | |
| } | |
| #a { | |
| font-family: Arial; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div id = "one"> </div> | |
| <div id = "two"> </div> | |
| <div id = "three"> </div> | |
| <div id = "four"> </div> | |
| <div id = "five"> </div> | |
| <div id = "six"> </div> | |
| <h1 id = "flag">RGB, by Todd L-M</h1> | |
| <a id = "a" href="https://github.com/Tpixelminer">Github</a> | |
| <script id="jsbin-source-css" type="text/css">div { | |
| height: 100px; | |
| } | |
| #one { | |
| background-color: red; | |
| } | |
| #two{ | |
| background-color: green; | |
| } | |
| #three { | |
| background-color: blue; | |
| } | |
| #four{ | |
| background-color: red; | |
| } | |
| #five { | |
| background-color: green; | |
| } | |
| #six { | |
| background-color: blue; | |
| } | |
| #flag { | |
| font-family: Arial; | |
| } | |
| #a { | |
| font-family: Arial; | |
| }</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
| div { | |
| height: 100px; | |
| } | |
| #one { | |
| background-color: red; | |
| } | |
| #two{ | |
| background-color: green; | |
| } | |
| #three { | |
| background-color: blue; | |
| } | |
| #four{ | |
| background-color: red; | |
| } | |
| #five { | |
| background-color: green; | |
| } | |
| #six { | |
| background-color: blue; | |
| } | |
| #flag { | |
| font-family: Arial; | |
| } | |
| #a { | |
| font-family: Arial; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment