Skip to content

Instantly share code, notes, and snippets.

@lmccart
Created October 5, 2017 02:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lmccart/5cf923c6ce80174e1e233c1db2c2f563 to your computer and use it in GitHub Desktop.
Save lmccart/5cf923c6ce80174e1e233c1db2c2f563 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>My Stylin Page</title>
<style>
p {
color: green;
font-size: 20px;
}
.donkeys {
background: pink;
}
#first-section {
font-family: monospace;
}
</style>
</head>
<body>
<div id="first-section">
I'm in the first section
<p>I'm a paragraph in the first section.</p>
<p class="donkeys">I'm a paragraph in the first section with class donkeys.</p>
</div>
<div id="second-section">
I'm in the second section
<p>I'm a paragraph in the second section.</p>
<p class="donkeys">I'm a paragraph in the second section with class donkeys.</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment