+ 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>
2 Respuestas
+ 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
+ 1
1. Between textarea and row there should not be a dot
2. Missing a button to submit