- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>The battle, part 1</title>
<meta charset="utf-8">
<link rel="stylesheet" href="world.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="world underworld">
<div class="wizard">
<div class="fireball"></div>
</div>
<div class="werewolf"></div>
</div>
</body>
</html>
CSS
.wizard {
top: 244px;
left: 50px;
z-index: 11;
}
.fireball {
}
.werewolf {
}
You’ve gone to a different page
Goalscompleted
0
- Place the figure of the werewolf on his back using the
transform: rotate
spell. - And throw the fireball squarely at the target that appears.
Comments