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

Im not able to go forward. Registration html project

im not able to submit the code. when i do it it tells add css and javascript option but i hv added it.
by

4 Answers

sam5epi0l
Please share the step you are stuck at and the code you used.
ramakrishna1
even am facing same issue this is my code
<!DOCTYPE html>
<html>
<head>
<title>Registration Form</title>
</head>
<body>
<h1>My Registration Form</h1>
<form>
<div>
<label>First Name</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>
<div>
<label>Courses</label>
<select>
<option>HTML</option>
<option>CSS</option>
<option>JavaScript</option>
</select>

</div><br/>
</form>

</body>
</html>
sam5epi0l
We fixed it. Please try again with the same.

<!DOCTYPE html>
<html>
<head>
<title>Registration Form</title>
</head>
<body>
<h1>My Registration Form</h1>
<form>
<div>
<label>First Name</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/>
<div>
<label>Courses</label>
<select>
<option>HTML</option>
<option>CSS</option>
<option>JavaScript</option>
</select>
</div>
<br/>
</form>
</body>
</html>
ramakrishna1
thanks

Login / Signup to Answer the Question.