To make a Fieldset use the followin code.      <fieldset> content </fieldset>
-- example of a Fieldset --


To make it have a Legend [a title] use the following code.      <fieldset> <legend>Legend Here </legend> content </fieldset>
Legend Here-- example of a Fieldset --


Align the Legend use the following code.      <fieldset> <legend align="center">Legend Here </legend> content </fieldset>
Legend Here-- example of a Fieldset --


Add CSS to Legden and FieldSet.
Legend Here
-- example of a Fieldset --

change the color, size, alignment, make it have scrollbars...




[ ---- Text Area ---- ]

To make a TextArea use the followin code.      <textarea> content </textarea>


Add background to a TextArea use the followin code.      <textarea style="background:#606060"> content </textarea>


Add a border to a TextArea use the followin code.
     <textarea style="background:#606060;border:#990000 2px dashed"> content </textarea>


Change the size of a TextArea use the followin code.
     <textarea style="background:#606060;border:#990000 2px dashed;height:200px;width:150px"> content </textarea>


Change the font of a TextArea use the followin code.
     <textarea style="background:#606060;border:#990000 2px dashed;height:200px;width:150px;color:990000;font-family:tempus sans itc;font-size:14px"> content </textarea>