Computer Science, asked by ananddhondale, 4 months ago

Write a program using HTML to create a form and submit it with personal data like name,address and standard

Answers

Answered by jaiswalvanshika1007
1

Answer:

HTML Forms are required to collect different k

Answered by DeepakUgalePatil
2

Answer:

<html>

<body>

<form method="post" action="form.jsp" >

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

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

<label for="address">address</label><br>

<input type="text" name="address">

<label for="standerd">address</label><br>

<input type="number" name="standerd">

<input type="submit" value="Submit">

</form>

</body>

</html>

Explanation:

I hope you liked this answer and you make it brilliance

Similar questions