Tell us what’s happening:
Describe your issue in detail Am asked to do three fieldset, check my code and help me correct it .
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>
<legend>Personal</legend>
<label for="fname">First name</label><br>
<input type="text" id="fname" name="fname" value="Itohan"><br>
<label for="lname">Last name</label><br>
<input type="text" id="lname" name="lname" value="Esosa"><br>
<label for="pn">Phone number</label><br>
<input type="text" id="pn" name="pn" value="08085011034"><br>
</fieldset>
</form>
</body>
</html>
/* file: styles.Ext.css */
body {
width: 100%;
height: 100vh;
margin: 0;
background-color: #1b1b32;
color: #f5f6f7;
}
Your mobile information:
Infinix X665E - Android 12 - Android SDK 31
Challenge: Learn HTML Forms by Building a Registration Form - Step 13
Link to the challenge: