Created
October 24, 2016 20:51
-
-
Save anaguzmn/fa39a16d5b875b9f41c7fe235667b6bb to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=fa39a16d5b875b9f41c7fe235667b6bb
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> Fav bands/ Artists:</h1> | |
<ol> | |
<li>The Neighborhood</li> | |
<li>Maluma</li> | |
<li>Zayn</li> | |
<li> Kehlani</li> | |
</ol> | |
<h1> Fav Movies: </h1> | |
<ul> | |
<li>Miss Peregrine's Home for Peculiar Children</li> | |
<li> The Perks of Being A Wallflower</li> | |
<li> The Walk</li> | |
</ul> | |
<h1> 3 Hobbies: </h1> | |
<ul> | |
<li> Draw </li> | |
<li> Listen to music </li> | |
<li> Sleep</li> | |
</ul> | |
<h1>Erika's favorite artists:</h1> | |
<ol> | |
<li>J.Cole</li> | |
<li>A boogie</li> | |
<li>Partynextdoor</li> | |
<li> Kanye West</li> | |
</ol> | |
</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
h1{ | |
color: #df9f9f; | |
} | |
h1{ | |
font-family: 'Wendy One', sans-serif; | |
} | |
body{ | |
background-color: #ffddcc; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment