Home  >  Article  >  Web Front-end  >  How to include a title in a fieldset in HTML?

How to include a title in a fieldset in HTML?

王林
王林forward
2023-08-23 17:01:061074browse

How to include a title in a fieldset in HTML?

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

top

bottom

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!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete