Skip to content

Instantly share code, notes, and snippets.

@xavi-
Last active February 1, 2017 12:37
Show Gist options
  • Save xavi-/f9498403a9f01a9ab45c03250f9aad93 to your computer and use it in GitHub Desktop.
Save xavi-/f9498403a9f01a9ab45c03250f9aad93 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=f9498403a9f01a9ab45c03250f9aad93
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My Favorites</h1>
<p>This webapge has some of my <em>most favorite</em> things in the <strong>world</strong>!</p>
<div id="favorites">
<div>
<h2>Favorite TV/Movies</h2>
<ol>
<li>Avatar</li>
<li>Rick and Morty</li>
<li>Captain America</li>
</ol>
</div>
<div>
<h2>Favorite Food</h2>
<ol>
<li>Shwarma</li>
<li>Bibimbap</li>
<li>Pizza</li>
</ol>
</div>
<div>
<h2>Favorite Animals</h2>
<ol>
<li>Zoey</li>
<li>Zozo</li>
<li>Tiny Z</li>
</ol>
</div>
</div>
</body>
</html>
body { background: #daede2; font-family: arial; }
#favorites { display: flex; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment