How can tables be used inside a form? Explain with an example.
Answer / Umesh Chandra Saini
Tables can be utilized within HTML forms to organize and display complex data in a structured format. To create a table within a form, simply place the <table> elements within the <form> element, as shown below: <form action="submit.php" method="post">n<table>nt<tr><th>Name</th><th>Age</th></tr>nt<tr><td><input type="text" name="name"></td><td><input type="number" name="age"></td></tr>n</table>nt<input type="submit" value="Submit">n</form>
| Is This Answer Correct ? | 0 Yes | 0 No |
What is meta utf8?
In HTML 5 we do not need DTD why?
What does an xhtml document look like?
What are the new input types provided by HTML 5 for forms?
Is html a framework?
Is it better to use iframe?
Is colgroup deprecated?
How do you insert an email link in html?
How do you make a link open in a new tab?
A joke of a question asked at Extentia by an extremely intelligent HUMAN. What is the difference between AJAX and Jquery ?
What is fallback in Application cache?
What is XHTML?