Write html code to generate a web page with the content of a form to input name , age, phone number and also feedback.
Answers
Answer:
Explanation:
Answer
4.0/5
7
shujaul51
Ambitious
17 answers
1.1K people helped
<HTML>
<HEAD>
<TITLE>FORM 1 </TITLE> </HEAD>
<BODY>
<FORM>
<P><LABEL for = "NAME">first name</LABEL>
<INPUT ID ="NAME" type ="text"><BR>
<LABEL for ="NAME">LAST NAME </LABEL>
<INPUT ID ="NAME" text ="text"><BR>
<LABEL for ="Gender">MALE</LABEL>
<INPUT ID ="gender" type ="text"><BR>
<INPUT type ="RADIO" name ="AGE" value ="Below 25">below 25<BR><BR>
<INPUT type ="RADIO" value ="above 25">above 25
<INPUT type ="Checkbox" name ="HOBBIES" value ="outdoor games">outdoor games<BR>
<INPUT type ="Checkbox" name="C2" value ="painting">painting<BR>
<INPUT type ="Checkbox" name =" C3" value ="dancing">dancing<BR>
<INPUT type ="Checkbox" name ="C4" value ="music">music<BR>
<INPUT type ="submit" value ="submit">
</P>
</FORM>
</BODY>
</HTML>