Example of element:
Add
xxxxxxxxxx
<!Doctype html>
<html>
<head>
<title>Hello, World!</title>
</head>
<body>
<style>
h2 {
color:white;
text-decoration:underline;
text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.8);
}
span {
display: inline-block;
background:CornflowerBlue;
padding:10px 8px;
margin-bottom:10px;
font-size:18px;
border-radius: 10px;
}
</style>
<h2>Recursive HTML</h2>
<span>
Write your code up here.
</span>
<br/>