
September 7th, 2012, 12:00 AM
|
 |
A Change of Season
|
|
|
|
|
Can someone please explain to me where do the <from></form> tags go?
Hello;
In a page with multiple forms in it, where do the form tags go anyways? Thanks
For example:
Code:
<html>
<body>
<table>
<tr>
<td><form action="1" >
</td>
<td>Name:<input type="text" />
</td>
<td>Email:<input type="text" />
</td>
<td><input type="submit" />
</td>
<td></form>
</td>
</tr>
</table>
</form>
<table>
<form action="2">
<table>
<tr>
<td>Name:<input type="text" />
</td>
<td>Email:<input type="text" />
</td>
<td><input type="submit" />
</td>
</tr>
</table>
</form>
</table>
<div id="form3">
<form action="3">
Name:<input type="text" />
Email:<input type="text" />
<input type="submit" />
</form>
</div>
</body>
</html>
|