Vintage CSS Text Style

by bitstarr

HTML

<h2 class="vintage">Vintage Style</h2>

CSS

.vintage {
    margin: 20px auto;
    font-family: Arial, "League-Gothic", Courier;
    text-align: center;
    font-size: 8em;
    font-weight: 700;
    text-transform: uppercase;
    color: #707070;
    text-shadow: 5px 5px 0px #eee, 7px 7px 0px #707070;
}