<!DOCTYPE HTML>
<head>
<title>
Using text-stroke Property
</title>
<style>
h1{
/* you can change the color */
color: white;
text-shadow:
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
}
</style>
</head>
<body>
<h1>Simulating text-stroke property</h1>
<p>
Simulating the style of text stroke property of CSS3 using the text-shadow property
</p>
</body>
</html>