Skip to content

Instantly share code, notes, and snippets.

@gee-whiz
Created November 19, 2020 11:45
Show Gist options
  • Select an option

  • Save gee-whiz/01e81d638d748df2d1a232d64c5073f4 to your computer and use it in GitHub Desktop.

Select an option

Save gee-whiz/01e81d638d748df2d1a232d64c5073f4 to your computer and use it in GitHub Desktop.
2.1 html
license: mit
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<!-- Creating the headlines -->
<h1>My main title</h1>
<h2>My top level heading</h2>
<h3>My subheading</h3>
<h4>My sub-subheading</h4>
</head>
<body>
<!-- Creating a paragraph -->
<p>My cats <strong>Soli & Felicita</strong> are</p>
<!-- Creating a list -->
<ul>
<li>relaxed</li>
<li>sweet</li>
<li>always in the moment</li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment