Skip to content

Instantly share code, notes, and snippets.

@sethlopezme
Last active August 29, 2015 14:00
Show Gist options
  • Save sethlopezme/11376758 to your computer and use it in GitHub Desktop.
Save sethlopezme/11376758 to your computer and use it in GitHub Desktop.
Example gist to use for testing my website.
p {
color: red;
font-size: 2em;
}
p.bold {
font-weight: bold;
}
p.underline {
text-decoration: underline;
}
<html>
<head>
<title>This is an example for testing purposes only!</title>
</head>
<body>
<p>This is only an example.</p>
<p class="bold">This is supposed to be bold.</p>
<p class="underline">This is supposed to be underlined.</p>
</body>
</html>
p {
color: red;
font-size: 2em;
&.bold {
font-weight: 700;
}
&.underline {
text-decoration: underline;
}
}
This is an example text document.
It has w lines of text, spanning 3 lines.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment