<h1>Oblique Text</h1>

<h1>Italic Text</h1>

<p>See <a href="http://www.sitepoint.com/12-little-known-css-facts/">article</a>.</p>
h1 {
  font-weight: normal;
  font-family: Georgia, serif;
  font-style: oblique;
  text-align: center;
  font-size: 50px;
}

h1:nth-child(2) {
  font-style: italic;
}

p {
  font-family: Arial, sans-serif;
  text-align: center;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.