TEXT-STROKE PROPERTY
Run
<!DOCTYPE HTML>
<head>
    <title>
        Using text-stroke Property 
    </title>
    <style>
        h1{
            font-size: 60px;
            -webkit-text-fill-color:yellow;
            -webkit-text-stroke-color : green; 
            -webkit-text-stroke-width:3px
        }
        
    </style>

</head>
<body>
    <h1>Working with text-stroke property</h1>
    <p>
        Here we are using text stroke property of CSS3.
    </p>
</body>
</html>