![]() |
Definition and Usage
The
The value of this attribute must be equal to the Applies to
The
Browser Support
The
|
Example:
HTML
<form action="/action_page.php" method="get" id="form1"> First name: <input type="text" name="fname"><br> Last name: <input type="text" name="lname"><br>
</form>
<button type="submit" form="form1" value="Submit">Submit</button>
Fieldset Example.
Example:
HTML
<form action="/action_page.php" method="get" id="form1"> What is your favorite color? <input type="text" name="fav_color"><br> <input type="submit">
</form>
<fieldset form="form1"> Name: <input type="text" name="username"><br> Email: <input type="text" name="usermail"><br>
</fieldset>
Input Example.
Example:
HTML
<form action="/action_page.php" id="form1"> First name: <input type="text" name="fname"><br> <input type="submit" value="Submit">
</form>
Last name: <input type="text" name="lname" form="form1">
Label Example.
Example:
HTML
<form action="/action_page.php" id="form1"> <input type="radio" id="html" name="fav_language" value="HTML"><br> <input type="radio" id="css" name="fav_language" value="CSS"> <label for="css">CSS</label><br> <input type="radio" id="javascript" name="fav_language" value="JavaScript"> <label for="javascript">JavaScript</label><br><br> <input type="submit" value="Submit">
</form>
<label for="html">HTML</label>
Meter Example.
Example:
HTML
<form action="/action_page.php" method="get" id="form1"> First name: <input type="text" name="fname"><br> <input type="submit" value="Submit">
</form>
<meter form="form1" name="x1" min="0" low="40" high="90" max="100" value="95"></meter>
Object Example.
Example:
HTML
<form action="/action_page.php" id="form1"> First name: <input type="text" name="fname"><br> <input type="submit" value="Submit">
</form>
<object data="helloworld.swf" height="400" width="400" form="form1" name="obj1"></object>
Output Example.
Example:
HTML
<form action="/action_page.php" id="numform"
oninput="x.value=parseInt(a.value)+parseInt(b.value)">0
<input type="range" id="a" name="a" value="50">100
+<input type="number" id="b" name="b" value="50">
<br><br>
<input type="submit">
</form>
<output form="numform" name="x" for="a b"></output>
Select Example.
Example:
HTML
<form action="/action_page.php" id="carform"> Firstname:<input type="text" name="fname"> <input type="submit">
</form>
<select name="carlist" form="carform"> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="opel">Opel</option> <option value="audi">Audi</option>
</select>
Textarea Example.
Example:
HTML
<form action="/action_page.php" id="usrform"> Name: <input type="text" name="usrname"> <input type="submit">
</form>
<textarea name="comment" form="usrform">Enter text here...</textarea>
html form attribute |
Type
: |
Develop |
Category
: |
Web Tutorial |
Sub Category
: |
HTML Attribute |
Uploaded by
: |
Admin |
Read Article https://horje.com/learn/1434/reference