Last active
August 29, 2015 14:00
-
-
Save sethlopezme/11376758 to your computer and use it in GitHub Desktop.
Example gist to use for testing my website.
This file contains 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
p { | |
color: red; | |
font-size: 2em; | |
} | |
p.bold { | |
font-weight: bold; | |
} | |
p.underline { | |
text-decoration: underline; | |
} |
This file contains 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
<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> |
This file contains 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
p { | |
color: red; | |
font-size: 2em; | |
&.bold { | |
font-weight: 700; | |
} | |
&.underline { | |
text-decoration: underline; | |
} | |
} |
This file contains 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
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