HOW TO CREATE FORMS IN HTML?
FORM:
The Syntax of form is,
<body>
<form action="">
Name:<input type ="text"
Style="width: 200px:"
<br>
<br>
CHECKBOX:
In checkbox, we can select multiple choices.
<input type="checkbox">
RADIO:
<h2>Select Any One </h2>
Gender: male <input type="radio" name="A">
Gender: female<input type="radio" name="A">
we put name="A" so that we can select one.
0 Comments