<html>
  <head>
  <title>message board form</title>
  </head>
  
<body>

<form>
 	<fieldset><legend>Name:</legend>
        <input type=text name=realname size=36>
	</fieldset>
  
	<fieldset><legend>E-Mail:</legend> 
        <input type=text name=username size=36>
	</fieldset>

 	<fieldset><legend>URL:</legend>
        <input type=text name=url size=36>
	</fieldset>

  	<fieldset><legend>City:</legend>
        <input type=text name=city size=15>
	</fieldset>

  	<fieldset><legend>State:</legend>
        <input type=text name=state size=2>
	</fieldset>

  	<fieldset><legend>Country:</legend>
        <input type=text value="" name=country size=15>
	</fieldset>

  	<fieldset><legend>Comments:</legend>
        <textarea name=comments cols=30 rows=3></textarea>
	</fieldset>
        
   </form>
  </body>
</html>