Skip to content

Instantly share code, notes, and snippets.

@gee-whiz
Last active November 19, 2020 19:15
Show Gist options
  • Select an option

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

Select an option

Save gee-whiz/7bbc3751fb5ff074ccb72f1decf3e1d9 to your computer and use it in GitHub Desktop.
2.1 html
license: mit
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap" rel="stylesheet">
<!-- 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>
<style>
body {
font-family: "Sofia";
font-size: 22px;
}
</style>
<!-- Creating a paragraph -->
<p>My cats class <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