I'm trying to add some custom styles to a few tags but finding it difficult to override the external CSS file. Adding styles inline seems to work fine, but using an internal page stylesheet is not working out. Tags are still using external styles.
For example, this is not working
<link rel="stylesheet" type="text/css" href="styles.css" />
<style type="text/css">
h1 {
font-size:36px;
}
</style>
I even tried creating a custom style
<style type="text/css">
h1.heading {
font-size:36px;
}
</style>
And there is no change.
This JSFiddle demonstrates the problem.