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=""> <label for="txtFirstName" class="required">First Name: <input name="txtFirstName" type="text" id="txtFirstName" value="Paul" /> </label> <label for="txtLastName" class="required" >Last Name: <input name="txtLastName" type="text" id="txtLastName" value="Jones" /> </label> <label for="txtEmail">E-Mail Address: <input name="txtEmail" type="text" id="txtEmail" value="Paul@jones.com" /> </label> </form> </body> </html>