- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>The text-shadow Property</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>In the Airplane.<br>Let’s Fly to Mexico!</h1>
<span>☻</span>
</body>
</html>
CSS
body {
background: url("sky.jpg") no-repeat 0 0;
color: #ecf0f1;
font-family: "Arial", sans-serif;
}
h1 {
margin: 40px 40px 200px;
font-weight: normal;
font-size: 50px;
}
span {
margin: 50px;
font-size: 80px;
}
You’ve gone to a different page
Goalscompleted
0
Assign the value 30px 30px 1px #111111
to the text-shadow
property
- the heading
h1
, - and the emoticon
span
.
Comments