blob: c93046ef60d4c6d684af41b838770c4128b41950 [file] [log] [blame]
<!DOCTYPE html>
<!--
| Simple text shadow.
| https://www.w3.org/TR/2013/CR-css-text-decor-3-20130801/#text-shadow-property
-->
<html>
<head>
<style>
body {
font-family: roboto;
font-size: 30px;
}
div {
text-shadow: 10px 10px;
}
</style>
</head>
<body>
<div>Hello there</div>
</body>
</html>