Last active
August 29, 2015 14:07
-
-
Save fisherds/42ffa4cc97c345920b56 to your computer and use it in GitHub Desktop.
What color is the h1 below? Red, Blue, Black, or White?
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; | |
| } | |
| h1 { | |
| font: 2em Arial, san-serif; // My favorite font | |
| color: blue; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <h1>Hello World!</h1> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment