×
×
Correct!
Set a "2px" horizontal, and "2px" vertical, "green" text shadow for the <h1> element, with a "5px" blur radius.
<style>
h1 {
text-shadow: 2px 2px 5px green;
}
</style>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
</body>
Not CorrectClick here to try again. Correct!<style> h1 { text-shadow:; } </style> <body> <h1>This is a heading</h1> <p>This is a paragraph</p> <p>This is a paragraph</p> </body> |