JSFiddle - React, Tailwind, and code Playground

HTML

<p class="cv">
    <a href="cv.pdf">
        <img src="http://dl.dropbox.com/u/1722364/application-pdf.png" />
        Download CV.
    </a>
</p>

CSS

.cv {
    font-size: 14px;
    line-height: 1.4em;
    font-family: Arial, sans-serif;
}

.cv a {
    text-decoration: none;
    color: #999;
}

.cv img {
    vertical-align: middle;
    margin-right: 10px;
}

.cv a:hover {
    color: #333;
}