+ 1

When i have to use form tag ???

29th Sep 2017, 5:51 PM
Sudha
Sudha - avatar
3 odpowiedzi
+ 3
You should use the form-tag to make an semantic area for user input. You can send forms to other HTML-Documents and post the user input on your website for example. <form method="POST" action="result.html"> <label>First Name <input type="text"></label> <label>Second name<input type="text"></label> <input type="submit" onclick="handleSubmit()"> </form>
29th Sep 2017, 6:03 PM
David
David - avatar
+ 1
Exactly as David said. But I have a tip for you. Go to section of HTML Forms and read the comments. Always read comments of each section, you will learn much more than topics can do.
30th Sep 2017, 1:41 AM
▲TopGun ▲
▲TopGun ▲ - avatar
0
thanks dudes👍
30th Sep 2017, 3:11 AM
Sudha
Sudha - avatar