Skip to content

Instantly share code, notes, and snippets.

@pradeepdotco
Created August 21, 2015 17:42
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 pradeepdotco/947c1ba3ffb93a007c02 to your computer and use it in GitHub Desktop.
Save pradeepdotco/947c1ba3ffb93a007c02 to your computer and use it in GitHub Desktop.
CSS inline
<html>
<head>
<title> Learning CSS for WordPress </title>
</head>
<body style="background-color: green;">
<header>
<span>Adding Inline CSS in a Document</span>
<h1 style="color: white">Inline CSS in a Document</h1>
</header>
<p> Adding inline CSS is really easy! All you have to do is add style anchor to the HTML element like we did for h1 element above.
</p>
<a href="https//WPism.com">Find out more</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment