The <legend>
tag in HTML is used to define the caption or the title for it’s parent <fieldset>
element. It is the first child of the <fieldset>
.
<legend>
// some title
</legend>
In this example, we will see how we can use a <legend>
element to add a title to the <fieldset>
element.
In the first fieldset
, we are asking the user to enter the address and contact number. Then we set the title to Delivery details using the legend
tag in line 3. Similarly, in the second fieldset
where we are asking the user for Card holder name, Expiry date, and CVV number, we set the title to Payment details using the legend
tag in line 12.