Created
January 31, 2022 18:29
-
-
Save kdankov/d788086d072665ed83dcc61974cbdd23 to your computer and use it in GitHub Desktop.
HTML & CSS Essentials - Introduction - 01
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>My First HTML Document</title> | |
</head> | |
<body> | |
<h1>My First HTML Document</h1> | |
<p>It is really cool, isn't it?</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
body { | |
background: #369; | |
color: #F8F8F8; | |
padding: 2em 20vw; | |
font: 16px/1.5 Lucida Grande, sans-serif; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment