Please help me Use division OR a table to structure the form elements Please exp
ID: 3713521 • Letter: P
Question
Please help me Use division OR a table to structure the form elements
Please explain your answer
thank you
<!DOCTYPEhtml>
<html>
<body>
<body>
<h2>Reservations(Please reserve your date)</h2>
<br>
<h3>Please complete this form and someone will contact you within 48hours <h3>
<form>
First name:
<input type="text"> <!Text field>
<br><br>
Last name:
<input type="text"> <!Text field>
<br><br>
Reservation date
<input type="date"> <!Text field>
<br><br>
Phone Number:
<input type="text" maxlength="10"> <!Text field>
<br><br>
Address:
<input type="text"> <!Text field>
<br><br>
Email:
<input type="text" > <!Text field>
<br><br>
Desired Package:
<input type="text"> <!Text field>
<br><br>
<input type="reset" value="Reset"><Reset button>
<input type="submit" value="Submit"> <Submit button>
<br><br>
Deposit is due 2 weeks before date of reservation.<br>
<input type="button" value="Back">
</body>
</html>
Explanation / Answer
//if you have any query then comment below.please rate the answer
<!DOCTYPEhtml>
<html>
<body>
<body>
<h2>Reservations(Please reserve your date)</h2>
<br>
<h3>Please complete this form and someone will contact you within 48hours <h3>
<form>
<table>
<tr>
<td>First name:</td>
<td><input type="text"></td>
</tr>
<tr>
<td>Last name:</td>
<td><input type="text"></td>
</tr>
<tr>
<td>Reservation date</td>
<td><input type="date"> </td>
</tr>
<tr>
<td>Phone Number:</td>
<td><input type="text" maxlength="10"> </td>
</tr>
<tr>
<td>Address:</td>
<td><input type="text"> </td>
</tr>
<tr>
<td>Email:</td>
<td><input type="text"> </td>
</tr>
<tr>
<td>Desired Package:</td>
<td><input type="text"> </td>
</tr>
<tr>
<td><input type="reset" value="Reset"><Reset button></td>
<td><input type="submit" value="Submit"> <Submit button> </td>
</tr>
<tr>
<td>Deposit is due 2 weeks before date of reservation.<br>
<input type="button" value="Back"></td>
</tr>
</table>
</body>
</html>
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.