HTML < legend > Tag - Learn About Website | DaddyFile

0

HTML <legend> Tag

Example

Group related elements in a form:

<form>
  <fieldset>
    <legend>Personalia:</legend>
    Name: <input type="text" size="30"><br>
    Email: <input type="text" size="30"><br>
    Date of birth: <input type="text" size="10">
  </fieldset>
</form>

Definition and Usage

The <legend> tag defines a caption for the <fieldset> element.

Differences Between HTML 4.01 and HTML5

The "align" attribute is not supported in HTML5.

Post a Comment

 
Top