- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>The beginning of the journey</title>
<meta charset="utf-8">
<link rel="stylesheet" href="world.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="world new-world">
<div class="tree"></div>
<div class="wizard"></div>
<div class="cave"></div>
</div>
</body>
</html>
CSS
.wizard {
top: 244px;
left: 125px;
}
.tree {
top: 178px;
left: 10px;
}
.world {
min-width: 570px;
}
You’ve gone to a different page
Goalscompleted
0
- Move the magician
130px
forward. - Halve his size.
- And move him forward
570px
.
Comments