Text Shadow
<html>
<head>
<title>Text Shadow </title>
<style rel="stylesheet" type="text/css">
h1 {
font-family: arial;
}
h1.complex {
text-shadow: 3px 3px red, yellow -3px 3px 2px, 3px -3px
}
</style>
</head>
<body>
<h1 class="complex">Complex text shadow</h1>
</body>
</html>
<head>
<title>Text Shadow </title>
<style rel="stylesheet" type="text/css">
h1 {
font-family: arial;
}
h1.complex {
text-shadow: 3px 3px red, yellow -3px 3px 2px, 3px -3px
}
</style>
</head>
<body>
<h1 class="complex">Complex text shadow</h1>
</body>
</html>
Comments
Post a Comment