Skip to content

Instantly share code, notes, and snippets.

@MicFin
Last active August 29, 2015 14:06
Show Gist options
  • Save MicFin/d7f9e4e35ddbb871e9ce to your computer and use it in GitHub Desktop.
Save MicFin/d7f9e4e35ddbb871e9ce to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<style>
p.hometown {
background: yellow;
}
.other_town{
background: blue;
}
</style>
</head>
<body>
<p>My name is Donald.</p>
<p class="hometown">I live in Ducksburg.</p>
<p>My name is Dolly.</p>
<p class="other_town">I live in another town.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment