Computer Science, asked by dnyanesh26mahajan, 5 months ago

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 ankityadav6600
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