Could any one please help thisassignment Assume you need to collect information
ID: 3612260 • Letter: C
Question
Could any one please help thisassignment 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 thisassignment 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.Explanation / Answer
<FORMaction="adduser.aspx" method="post">
<P>
<LABEL for="firstname">First name:</LABEL>
<INPUT type="text" id="firstname"><BR>
<LABEL for="lastname">Last name:</LABEL>
<INPUT type="text" id="lastname"><BR>
<LABEL for="email">email:</LABEL>
<LABEL for="password">Password: </LABEL>
<INPUT type="password" id="password"><BR>
<LABEL for="email">email:</LABEL>
<INPUT type="text" id="email"><BR>
<INPUT type="radio" name="sex"value="Male"> Male<BR>
<INPUT type="radio" name="sex"value="Female"> Female<BR>
<br>
<LABEL for="os">os: </LABEL>
<select name="menu" size="3"multiple>
<optionvalue="1">Linux</option>
<optionvalue="2">Windows</option>
<optionvalue="3">Mac</option>
</select>
<INPUT type="submit" value="Send"> <INPUTtype="reset">
</P>
</FORM>
</body>
</html>