<div class="container">
<p>
You should check out all the awesome CSS tutorials <a href="http://tympanus.net/Codrops">on Codrops</a>.
</p>
<p>
You should also read more about the properties used in this example for more information about each of them. Refer to the <a href="http://tympanus.net/codrops/css_reference/">CSS Reference</a> homepage for a list of all entries.
</p>
</div>
body {
background-color: #111;
color: white;
font-size: 1.25em;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
hr {
margin: 50px 0;
}
.container {
margin: 100px auto;
max-width: 850px;
}
a {
color: deepPink;
text-decoration: none;
}
a[href]::after {
color: grey;
content: " (" attr(href) ")";
}