Can anyone correct and explain this html code written for servlet | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Can anyone correct and explain this html code written for servlet

<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <form action ="/hello" method="GET"> Name<input type="text" name="Name"><br> Email<input type="text"name="Email"><br> address<textarea.row="5" column="5" value ="address"> </form> </body> </html>

27th Mar 2019, 5:22 PM
Anshul Sharma
Anshul Sharma - avatar
2 Answers
+ 2
://This a form taking name,email, address from user and submits to page "hello" from "GET" method ://Mistakes explained by Gordon https://code.sololearn.com/WD77qxj2IuIJ/?ref=app
27th Mar 2019, 6:32 PM
Sudarshan Rai
Sudarshan Rai - avatar
+ 1
1. Between textarea and row there should not be a dot 2. Missing a button to submit
27th Mar 2019, 6:22 PM
Gordon
Gordon - avatar