<FIELDSET> <LEGEND> ... </LEGEND> </FIELDSET>
¢¸    ¡á     ¢º

FIELDSET element´Â ¼­·Î °ü·ÃÀÖ´Â ÄÁÆ®·ÑµéÀ» Çϳª·Î ¹­À» ¼ö ÀÖµµ·Ï ÇØ ÁÖ¸ç, LEGEND element´Â ÄÁÆ®·Ñ ¹­À½¿¡ Á¦¸ñÀ» ºÙÀÌ´Â ¿ªÇÒÀ» ÇÑ´Ù. µÎ element ¸ðµÎ ½ÃÀÛ°ú ³¡³»´Â ű׷ΠÀÌ·ç¾îÁø´Ù.
<FORM action="..." method="post">
 <FIELDSET>
  <LEGEND>Personal Information</LEGEND>
  Last Name: <INPUT name="personal_lastname" type="text" tabindex="1">
  First Name: <INPUT name="personal_firstname" type="text" tabindex="2">
  Address: <INPUT name="personal_address" type="text" tabindex="3">
 </FIELDSET>
 <FIELDSET>
  <LEGEND>Medical History</LEGEND>
  <INPUT name="history_illness" 
         type="checkbox" 
         value="Smallpox" tabindex="20"> Smallpox
  <INPUT name="history_illness" 
         type="checkbox" 
         value="Mumps" tabindex="21"> Mumps
  <INPUT name="history_illness" 
         type="checkbox" 
         value="Dizziness" tabindex="22"> Dizziness
  <INPUT name="history_illness" 
         type="checkbox" 
         value="Sneezing" tabindex="23"> Sneezing
 </FIELDSET>
 <FIELDSET>
  <LEGEND>Current Medication</LEGEND>
  Are you currently taking any medication? 
  <INPUT name="medication_now" 
         type="radio" 
         value="Yes" tabindex="35">Yes
  <INPUT name="medication_now" 
         type="radio" 
         value="No" tabindex="35">No
  If you are currently taking medication, please indicate
  it in the space below:
  <TEXTAREA name="current_medication" 
            rows="10" cols="40"
            tabindex="40">
  </TEXTAREA>
 </FIELDSET>
</FORM> ÀÌ·¸°Ô ³ª¿Í¿ä

LEGEND ¼Ó¼º

id, class, title, style
onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup
¡Ø FIELDSET°ú LEGEND¸¦ È°¿ëÇÏ¸é ±ò²ûÇÏ°Ô È­¸éÀ» Á¤¸®ÇÒ ¼öµµ ÀÖ´Ù.
<FORM>
 <FIELDSET>
  <LEGEND style="color : #ff0099 ; font : 800 12pt"><IMG src="notice.gif"></LEGEND>
1. HTML °­Á°¡ ¿Ï¼ºµÇ¾ú½À´Ï´Ù.
<BR>
2. CSS °­Á°¡ ¾÷µ¥ÀÌÆ®µÇ¾ú½À´Ï´Ù.
<BR>
3. FONT¿¡ ±Û²Ã 10°³°¡ Ãß°¡µÇ¾ú½À´Ï´Ù.
 </FIELDSET>
</FORM> ÀÌ·¸°Ô ³ª¿Í¿ä

¢¸    ¡á     ¢º