Could any one please help with this question. Assume you need to collect informa
ID: 3612261 • Letter: C
Question
Could any one please help with this question. Assume you need to collect information from the customer (e.g.bookstore, bank). Create a .html file which contains basicform elements, at least includes textbox, radio, checkbox,password, button, label, text area, drop down box, etc. Please send Both the softcopy of source code, including all.html and .css file. Create a folder and put all the files in,including subfolders. Note that you need to write a readme.txtfile, which describe the functions of each file and therelationship between them. Could any one please help with this question. Assume you need to collect information from the customer (e.g.bookstore, bank). Create a .html file which contains basicform elements, at least includes textbox, radio, checkbox,password, button, label, text area, drop down box, etc. Please send Both the softcopy of source code, including all.html and .css file. Create a folder and put all the files in,including subfolders. Note that you need to write a readme.txtfile, which describe the functions of each file and therelationship between them. Please send Both the softcopy of source code, including all.html and .css file. Create a folder and put all the files in,including subfolders. Note that you need to write a readme.txtfile, which describe the functions of each file and therelationship between them.Explanation / Answer
<html><head>
<title> Simple form</title>
<body>
<form action="from1" method="POST">
<table border="0">
<tr><Td>Name : </td><td> <INPUT type="text"id="email"> </td></tr>
<tr>
<td>
Sex</td><td> <INPUTtype="radio" name="sex" value="Male"> Male
<INPUT type="radio" name="sex"value="Female"> Female
</td></tr>
<tr>
<td>
<LABEL for="password">Password: </LABEL>
</td><td> <INPUT type="password" id="password">
</td>
</tr>
<tr>
<td>Your name*:</td>
<td><input tpye="text" name="req_Name:"size="30"></td>
<tr>
<td>E-mail*:</td>
<td><input tpye="text" name="eml_E-mail:"size="30"></td>
</tr>
<tr>
<td>Phone number:</td>
<td><input tpye="text" name="Phone:"size="30"></td>
</tr>
<tr>
<td>Website*:</td>
<td><input tpye="text" name="ul_URL:" value="http://"size="40"></td>
</tr>
<tr><td>
Your favorite color:</td><td>
<select name="Favourite Color:"size="1">
<optionselected>red</option>
<option>green</option>
<option>blue</option>
<option>black</option>
<option>white</option>
<option>yellow</option>
<option>purple</option>
<option>Other</option>
</select></td></tr>
</table>
<p>Comments*:<br><textarea name="req_Comments:"rows="6" cols="30"></textarea><br>
<input type="submit" value="Submit form"><br>
Required fields are marked with *
</form>
</body>
</html>