label form Attribute - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:label

Description

The form attribute specifies one or more forms the <label> element belongs to.

Attribute Values

Value Description
form_id Specifies the form element the <label> element belongs to.

The value of this attribute must be the id attribute of a <form> element in the same document.

A <label> element located outside a form (but still a part of the form):

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<form action="/action_page.php" id="form1">
  <input type="radio" name="gender" id="male" value="male"><br>
  <label form ='form1' for="female">Female</label>
  <input type="radio" name="gender" id="female" value="female"><br>
  <label for="other">Other</label>
  <input type="radio" name="gender" id="other" value="other"><br><br>
  <input type="submit" value="Submit">
</form><!--from  ww w .j  a  v  a  2s. co  m-->

<label for="male" form="form1">Male</label>

</body>
</html>

Related Tutorials