- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>The battle, part 2</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>
<div class="monster"></div>
</div>
</body>
</html>
CSS
.wizard {
top: 244px;
left: 50px;
}
.monster {
}
You’ve gone to a different page
Goalscompleted
0
- Skew the
.monster
monster30°
in the horizontal direction. - And then show him who is boss by skewing him
30°
in the vertical direction.
- Open the scroll.
Comments