Write html code to create a Admission form having the fields Name, gender, address,
Class, submit button and reset button by making the use of form elements.
Answers
Answered by
5
Answer:
mark Brainlist
Explanation:
<!DOCTYPE html>
<html>
<body>
<h2>Text input fields</h2>
<form>
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" value="John"><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname" value="Doe">
</form>
<p>Note that the form itself is not visible.</p>
<p>Also note that the default width of text input fields is 20 characters.</p>
</body>
</html>
Similar questions
Math,
3 months ago
Computer Science,
6 months ago
Hindi,
6 months ago
English,
10 months ago
Math,
10 months ago
CBSE BOARD X,
10 months ago