HTML Source Code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!--*********************************************** * Forms With Style - ? Design Melt Down (www.designmeltdown.com) * This notice MUST stay intact for legal use * Visit Design Melt Down at http://www.designmeltdown.com/ ***********************************************--> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Forms With Style</title> <link href="style.css" rel="stylesheet" type="text/css" /> </head> <body> <form id="StyleMe" name="StyleMe" method="post" action=""> <fieldset> <legend>Personal Information</legend> <label for="txtFirstName">First Name:</label> <input type="text" name="txtFirstName" id="txtFirstName" /> <br /> <label for="txtLastName">Last Name:</label> <input type="text" name="txtLastName" id="txtLastName" /> </fieldset> <fieldset> <legend>Home Address</legend> <label for="txtAddress1">Address 1:</label> <input type="text" name="txtAddress1" id="txtAddress1" /> <br /> <label for="txtAddress2">Address 2:</label> <input type="text" name="txtAddress2" id="txtAddress2" /> <br /> <label for="txtCity">City:</label> <input type="text" name="txtCity" id="txtCity" /> <br /> <label for="txtState">State:</label> <input type="text" name="txtState" id="txtState" /> <br /> <label for="txtZip">Zip Code:</label> <input type="text" name="txtZip" id="txtZip" /> <br /> </fieldset> <p> <input type="submit" name="Submit" value="Submit" class="button" /> </p> </form> </body> </html>