text-stroke - CSS

by redky

HTML

<h1>
    Hello World!
</h1>

<h2>Hello world!</h2>

CSS

body {
    font-size: 40px;
}

h1 {
    -webkit-text-stroke: 1px transparent;
    color: red;
}

h2 {
    -webkit-text-stroke: 2px red;
    color: transparent;
}