Created
May 19, 2015 16:55
-
-
Save AndrewEddy/056ece6f86ea6e16075f 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>ID and Class Page</title> | |
| <style> | |
| #main-navigation { | |
| color: brown; | |
| } | |
| h1 { | |
| color: aqua; | |
| } | |
| .headerone { | |
| color: blueviolet; | |
| text-decoration: overline; | |
| } | |
| .headergreen { | |
| color: green; | |
| text-decoration: underline; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div id="main-navigation"><ul> | |
| <li>Home</li> | |
| <li>About</li> | |
| <li>Contact</li> | |
| </ul></div> | |
| <h1 class="headerone">Header One</h1> | |
| <h1 class="headerone">Header One</h1> | |
| <h1 class="headerone">Header One</h1> | |
| <h1 class="headerone">Header One</h1> | |
| <h1 class="headergreen">Header Green</h1> | |
| <h1 class="headergreen">Header Green</h1> | |
| <h1 class="headergreen">Header Green</h1> | |
| </body> | |
| </html> |
ok
good
good
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ok