Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Html creation of registration form step 5 details

I need help for the step 5 question is creating gender table I've created the gender with radio with the required specifications still its showing to add caption even I've entered the caption still its showing to add caption
by

1 Answer

kshitijrana14
Try this one:

<!doctype html>
<html>
<head>
<title>Registration Form</title>
</head>
<body>
<h1>My Registration Form</h1>
<form>
<div>
<label>FirstName</label>
<input type="text" name="fname">
</div>
<br/>
<div>
<label>Last Name</label>
<input type="text" name="lname">
</div>
<br/>
<div>
<label>Gender</label>
<br/>
<input type="radio" name="gender">
<label>Male</label>
<br/>
<input type="radio" name="gender">
<label>Female</label>
<br/>
<input type="radio" name="gender">
<label>Other</label>
<br/>
</div>
<br/>
</form>
</body>
</html>

Login / Signup to Answer the Question.