Skip to content

Instantly share code, notes, and snippets.

@nextechu
Last active January 3, 2016 17:19
Show Gist options
  • Save nextechu/8494912 to your computer and use it in GitHub Desktop.
Save nextechu/8494912 to your computer and use it in GitHub Desktop.
Examples make the text bold, the font style Verdana and its color to red.
<!-- CSS Inline -->
<p style="color=#FF0000; face='Verdana, Arial, Helvetica, sans-serif'; font-weight: bold;">This is red bold text</p>
<!-- CSS in style block -->
<style>
.myRed {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
color: #FF0000;
}
</style>
<p class="myRede">My CSS red bold text</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment