Example fieldset tag in HTML

Does anyone have any good examples of using the fieldset tag in HTML?

+2


source to share


2 answers


Do you mean <fieldset>

?

<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>

      



Or perhaps <frameset>

?

<html>
  <frameset cols="25%,*,25%">
    <frame src="frame_a.htm" />
    <frame src="frame_b.htm" />
    <frame src="frame_c.htm" />
  </frameset>
</html>

      

+4


source


SitePoint has an image showing the correct use of the tag fieldset

. There is also more detailed information.



+1


source







All Articles