Use the tag to include a title. The HTML tag is used to define a title for the
tag. It supports the following attributes −
Attribute
Value
Description
Align
topbottom
left
right
Deprecated − Specifies content alignment.
Example
You can try running the following code to implement the tag in HTML−
<!DOCTYPE html>
<html>
<head>
<title>HTML legend Tag</title>
</head>
<body>
<form>
<fieldset>
<legend>Student Details</legend>
Student Name: <input type = "text"><br />
MBA Subjects:<input type = "text"><br />
</fieldset>
</form>
</body>
</html> The above is the detailed content of How to include a title in a fieldset in HTML?. For more information, please follow other related articles on the PHP Chinese website!