Created
November 5, 2020 09:32
-
-
Save mak2506/59708b38a833ca49a8328d0e951b32e5 to your computer and use it in GitHub Desktop.
xxOJLoY
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> | |
| <head> | |
| <title>Hello</title> | |
| </head> | |
| <body> | |
| <h1 id="head">Hello to this new project</h1> | |
| <p id="para">Here i am ready to start my journey in web devlopment.</p> | |
| </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
| * { | |
| margin: auto; | |
| padding: 0; | |
| } | |
| body{ | |
| background-color: rgba(255, 200, 100, 0.9); | |
| } | |
| #head{ | |
| font-family: Georgia; | |
| font-size: 70px; | |
| text-align: center; | |
| } | |
| #para{ | |
| text-align: center; | |
| font-size: 35px; | |
| font-family: Times New Roman; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment