In: Computer Science
Create an HTML form with the following:
<!-- HTML Code-->
<HTML>
<HEAD>
<TITLE>
My HTML FORM
</TITLE>
</HEAD>
<BODY>
<label for="text1">Text Input1 </label>
<input type="text" name="firstTextInput">
<br><br>
<label for="text2">Text Input2 </label>
<input type="text" name="secondTextInput">
<br><br>
<textarea name = "txtArea" rows="4" cols="50">
</textarea>
<br><br>
<input type="radio" name="options" id="rd1" value="rd1"
>Radio1
<input type="radio" name="options" id="rd2" value="rd2"
>Radio2
<br><br>
<input type="checkbox" name="chkOptions" id="chk1" value="chk1"
>CheckBox1
<input type="checkbox" name="chkOptions" id="chk2" value="chk2"
>CheckBox2
<input type="checkbox" name="chkOptions" id="chk3" value="chk3"
>CheckBox3
<br><br>
<input type="button" value="Click Me!">
</BODY>
</HTML>
//If you need any help regarding this solution ......... please leave a comment ........ thanks