Last active
February 1, 2017 12:37
-
-
Save xavi-/f9498403a9f01a9ab45c03250f9aad93 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=f9498403a9f01a9ab45c03250f9aad93
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>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> |
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: #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