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="form" name="form" method="post" action=""> <label for="select">Contact Laclede Gas</label> <select name="select" id="select"> <optgroup label="Emergencies" class="Emergencies"> <option>Report a gas odor</option> <option>Call before you dig</option> <option>Report a loss of service</option> </optgroup> <optgroup label="New Customers" class="NewCustomers"> <option>Establish service</option> </optgroup> <optgroup label="Existing Customers" class="ExistingCustomers"> <option>Appliance sales</option> <option>Appliance repair services</option> <option>Discus billing issues</option> <option>Discontinue Service</option> </optgroup> </select> </form> </body> </html>