Skip to content

Instantly share code, notes, and snippets.

@LtAstros
Created January 27, 2017 00:46
Show Gist options
  • Save LtAstros/d8589ebcdb5d6f8d7997e34adfb66f70 to your computer and use it in GitHub Desktop.
Save LtAstros/d8589ebcdb5d6f8d7997e34adfb66f70 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=d8589ebcdb5d6f8d7997e34adfb66f70
<!DOCTYPE html>
<html>
<head>
<title>Movies and Shows</title>
</head>
<body>
<h1>Best Movies and TV Shows Ever!</h1>
<ul>
<li class="Movie">Finding Dory</li>
<li class="Show">Game of Thrones</li>
<li class="Movie">Star Wars: The Force Awakens</li>
<li class="Movie">Life of Pi</li>
<li class="Show">Dancing with the Stars</li>
<li class="Show">The Walking Dead</li>
</ul>
</body>
</html>
h1 {
color: green;
font-family: Arial;
}
.Show {
color: red;
font-size: 1px;
}
.Movie {
color: blue;
font-size: 57px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment