Skip to content

Instantly share code, notes, and snippets.

@kdankov
Created January 31, 2022 18:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kdankov/d788086d072665ed83dcc61974cbdd23 to your computer and use it in GitHub Desktop.
Save kdankov/d788086d072665ed83dcc61974cbdd23 to your computer and use it in GitHub Desktop.
HTML & CSS Essentials - Introduction - 01
<!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>
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