<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Untitled Document</title> <style type="text/css"> #wrapper{width:980px;position:relative;margin:0 auto;} #formContainer{width:500px;margin:0 auto;position:relative;} fieldset{float:left;clear:both;width:500px;padding:10px;} label{float:left;width:250px;text-align:right;margin-right:10px;} input{float:left;width:200px;} </style> </head> <body> <div id="wrapper"> <div id="formContainer"> <form> <fieldset> <label>Name:</label> <input type="text" id="name"> </fieldset> <fieldset> <label>Address:</label> <input type="text" id="Address"> </fieldset> <fieldset> <label>City:</label> <input type="text" id="City"> </fieldset> <fieldset> <label>State:</label> <input type="text" id="State"> </fieldset> <fieldset> <label>Zip Code:</label> <input type="text" id="Zip"> </fieldset> </form> </div><!--end formContainer --> </div><!--end wrapper --> </body> </html>
Select allOpen in new window
Open in new window