Tell us what’s happening:
Describe your issue in detail here.
Hi,
I can’t figure out what’s wrong with my code. It says Begin by giving the body a width of 100% , and a height of 100vh . I wrote:
.body {
width: 100%;
height: 100vh;
}
**Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Registration Form</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h1>Registration Form</h1>
<p>Please fill out this form with the required information</p>
</body>
</html>
Hey! Everything looks good! But I believe in your CSS it should be body as the selector not .body - Remove the period in front of body and see if that helps! (: