Computer Science, asked by SamiyaNisarwani, 6 months ago

Creating a FORM in HTML is not easy and remembering every
term is even difficult. Students! Recollect how do we write down
different Input Controls of a FORM in HTML?​

Answers

Answered by aadddiiii
1

Explanation:

<form>

<label for="fname">First name:</label><br>

<input type="text" id="fname" name="fname"><br>

<label for="lname">Last name:</label><br>

<input type="text" id="lname" name="lname">

</form>

Similar questions