Tell us what’s happening:
Describe your issue in detail here.
Your code so far
/* file: index.Ext.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>
<form method="post" action='https://register-demo.freecodecamp.org'>
<fieldset>
<!-- Label for First Name -->
<label for="first-name">First Name:</label>
<!-- Label for Last Name -->
</fieldset>
<fieldset>
<legend>Section 2</legend>
<label for="last-name">Last Name:</label>
<!-- Label for Email -->
<!-- Form fields for Section 2 will go here -->
</fieldset>
<label for="email">Email:</label>
<!-- Label for Password -->
<!-- Third Section -->
<fieldset>
<legend>Section 3</legend>
<label for="password">Password:</label>
</fieldset>
<!-- Form fields for Section 3 will go here -->
</fieldset>
</form>
</body>
</html>
/* file: styles.Ext.css */
body {
width: 100%;
height: 100vh;
margin: 0;
background-color: #1b1b32;
color: #f5f6f7;
}
Your mobile information:
TECNO PR651H - Android 11 - Android SDK 30
Challenge: Learn HTML Forms by Building a Registration Form - Step 14
Link to the challenge: