JSFiddle - React, Tailwind, and code Playground
HTML
<div id="container">
<div id="phone"><a href="/page.htm"><span>Link text</span></a></div>
<img src="http://i.stack.imgur.com/8GvME.png">
</div>
CSS
#container {
position: relative;
}
#phone {
position: absolute;
top: 34px;
left: 70px;
width: 250px;
height: 25px;
-webkit-transform:rotate(-11deg);
}
#phone a {
display: block;
width: 250px;
height: 25px;
}
#phone a span {
margin-left: -9999px;
}