Created
May 30, 2017 01:46
-
-
Save supercodingninja/6935b50be97737e4c9dadd0edb9ba487 to your computer and use it in GitHub Desktop.
null created by supercodingninja - https://repl.it/IWvP/7
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
| img { | |
| display: block; | |
| height: 100px; | |
| width: 300px; | |
| margin: auto; | |
| } | |
| p { | |
| text-align: center; | |
| font-family: Garamond, serif; | |
| font-size: 18px; | |
| } | |
| div { | |
| height: 50px; | |
| width: 120px; | |
| border-color: #6495ED; | |
| background-color: #BCD2EE; | |
| border-style: solid dashed; | |
| border-width: 2px; | |
| border-radius: 5px; | |
| margin: auto; | |
| text-align: center; | |
| } | |
| a { | |
| text-decoration: cursive; | |
| color: #58291F; | |
| font-family: cursive; | |
| } |
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> | |
| <link type="text/css" rel="stylesheet" href="stylesheet.css"/> | |
| <title>About Me</title> | |
| </head> | |
| <body> | |
| <img src="https://s3.amazonaws.com/codecademy-blog/assets/46838757.png"/> | |
| <p>We're Codecademy! We're here to help you learn to code.</p><br/><br/> | |
| <div> | |
| <a href="https://github.com/supercodingninja">The Super<span> Coding<span> Ninja!</span> | |
| </a> | |
| </div> | |
| <div> | |
| <a href="https://facebook.com">Friend us on <span>Facebook!</span> | |
| </a> | |
| </div> | |
| </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
| Empty file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment