Created
January 14, 2017 20:16
-
-
Save tomasovic/22bf13ff3fed6404e6b64eb9eb8b3a27 to your computer and use it in GitHub Desktop.
Embedded CSS
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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>A brief introduction to HTML</title> | |
| <style> | |
| .blue_p { | |
| color: blue; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <p class="blue_p"></p> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment