A form can consist of the table and its properties to display it on the web page. The form is placed with the <td> tag that includes the data of the table. This can also be used to position the form in relation to the other content. The table will be added within the form.
<FORM ACTION="[URL]"><TABLE><TR><TH>This is the table heading</TH><TD><INPUT TYPE="text" NAME="account"></TD></TR><TR><TH>This is another heading for a button</TH><TD><INPUT TYPE="password" NAME="password"></TD></TR><TR><TD> </TD><TD><INPUT TYPE="submit" NAME="Log On"></TD></TR></TABLE></FORM>
In this the form elements are getting used inside the table tags like <input type>, <text area>, etc. The form input will be given using the <td> tag that displays the table data and related information accordingly.
Answers (0)