Created
July 30, 2014 21:10
-
-
Save awentzonline/2eb75ecbf8d07a2bc745 to your computer and use it in GitHub Desktop.
HTML10
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>Blink</title> | |
| <style type="text/css"> | |
| blink { | |
| display: block; | |
| } | |
| .nav > blink { | |
| display: inline-block; | |
| } | |
| .heading { | |
| font-size: 200%; | |
| font-weight: bold; | |
| } | |
| .content { | |
| padding: 15px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <blink class="heading">Welcome to my World Wide Web Log!</blink> | |
| <blink class="nav"> | |
| <blink><a href="#">Home</a></blink> | |
| <blink><a href="#">About</a></blink> | |
| </blink> | |
| <blink class="content"> | |
| <blink>This is a cool page!</blink> | |
| </blink> | |
| <blink class="footer"> | |
| © 2014 | |
| </blink> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment