CSS3 Text stroke
Adding An Outline To Your Text Using the CSS3 text-stroke Property
Css
.stroke {
-webkit-text-stroke: 2px #000;
font-size:50px;
color: #c00;
}
.transparent {
-webkit-text-fill-color: transparent;
}Html
<p class='stroke'>Text stroke example</p>
<p class='stroke transparent'>Text stroke example</p>