tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 HTML > Basic > Legend

Legend 

The following example shows using FieldSet and Legend Tags.

File Name  :  
source/HTML/basic_tags/legend.html 
01<html>
02<body>
03     
04    <h2>Field Set and Legend tags</h2>
05 
06    <fieldset style="text-align:right; width:40%">
07        <legend><b>Address Details</b></legend>
08 
09        Name : <input type="text" /><br />
10        Age :  <input type="text" /><br />
11        Address :  <input type="text" /><br />
12        Phone :  <input type="text" /><br />
13        <input type="button" value="Submit" />
14    </fieldset>
15 
16</body>
17</html>

It gives the following output,
File Name  :  
source/HTML/basic_tags/legend.html 

Field Set and Legend tags

Address Details Name :
Age :
Address :
Phone :



 
  


  
bl  br