blueindian1
Programmer
hi,
below is the code for my page. when i include the form tags, some of the elements (for example, email) turn yellow.
anyone know why?
TIA!
below is the code for my page. when i include the form tags, some of the elements (for example, email) turn yellow.
anyone know why?
TIA!
Code:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="../css/style.css" />
</head>
<form name="support_call" method="post" action="support_call.html">
<body background="../tile.jpg" topmargin="2" marginwidth="0" marginheight="0" leftmargin="0" rightmargin="2" bottommargin="0">
<!-- begin outer table -->
<table width="100%" border=0 cellpadding="0" cellspacing="0">
<tr width=100%>
<td colspan=3>
<!-- begin banner-->
<table width=100% border=0 cellpadding=0 cellspacing=0>
<tr width=100%>
<td>
<img src="../images/2_01.jpg" width="100%" height="79">
</td>
<td>
<img src="../images/2_02.jpg" width="100%" height="79">
</td>
<td>
<img src="../images/2_03.jpg" width="100%" height="79">
</td>
</table>
</td>
</tr>
<tr>
<td>
<table>
<tr>
<td>
<img src="../images/image_1.gif"></td>
<td>
<img src="../images/image_2.gif"></td>
<td>
<img src="../images/image_3.gif"></td>
</tr>
</table>
</td>
<td class=sectionLabel width=50%>
Call Me
</td>
<td width=30% class=welcomeText style="padding-right:15px;">
Welcome Jane Bloggs<br>My Account | Log Out | Help
</td>
</tr>
<tr>
<td valign=top>
<!-- begin left nav -->
<table width=100%>
<tr width=100%>
<td class=tabLabel width=100%>Device Inventory</td>
</tr>
<tr width=100%>
<td class=tabLabel width=100%>Buy Services</td>
</tr>
<tr width=100%>
<td class=tabLabel width=100%>Buy Products</td>
</tr>
<tr width=100%>
<td class=tabLabel width=100%>Support</td>
</tr>
</table>
<!-- end left nav -->
</td>
<td colspan=2 align=left valign=top style="padding-right:15px;">
<!-- begin content area -->
<table border=1 width=100% class=mainContentBoxes valign=top>
<tr width=100%>
<td colspan=4 class=contentLabel>
Please verify that your telephone contact information is correct, select a problem
type, and enter a problem description.
</td>
</tr>
<tr width=100%>
<td class=formElementLabel>
First Name:
</td>
<td>
<input class=formElement type=text name=FIRSTNAME_PLACEHOLDER>
</td>
<td class=formElementLabel>
Problem Type:
</td>
<td>
<select class=formElement name=PROBLEM_TYPE_PLACEHOLDER>
<option value="">Select One</option>
</select>
</td>
</tr>
<tr width=100%>
<td class=formElementLabel>
Last Name:
</td>
<td>
<input class=formElement type=text name=LASTNAME_PLACEHOLDER>
</td>
<td colspan=2 class=formElementLabel>
</td>
</tr>
<tr width=100%>
<td class=formElementLabel>
Job Title:
</td>
<td>
<input class=formElement type=text name=JOBTITLE_PLACEHOLDER>
</td>
<td colspan=2 class=formElementLabel>
Problem Description:
</td>
</tr>
<tr width=100%>
<td class=formElementLabel>
Email Address:
</td>
<td>
<input class=formElement type=text name=EMAIL_PLACEHOLDER>
</td>
<td colspan=2 rowspan=7 valign=top style="padding-left:12px;">
<textarea cols=30 rows=10 name=PROBLEM_DESCRIPTION_PLACEHOLDER>
</textarea>
</td>
</tr>
<tr width=100%>
<td class=formElementLabel>
Phone Number for<BR> the next X hours:
</td>
<td>
<input class=formElement type=text name=TEMP_PHONE_PLACEHOLDER>
</td>
</tr>
<tr width=100%>
<td class=formElementLabel>
Phone Number:
</td>
<td>
<input class=formElement type=text name=PHONE_PLACEHOLDER>
</td>
</tr>
<tr width=100%>
<td class=formElementLabel>
Company Name:
</td>
<td>
<input class=formElement type=text name=COMPANY_PLACEHOLDER>
</td>
</tr>
<tr width=100%>
<td class=formElementLabel>
Street Address 1:
</td>
<td>
<input class=formElement type=text name=STREETADDR1_PLACEHOLDER>
</td>
</tr>
<tr width=100%>
<td class=formElementLabel>
Street Address 2:
</td>
<td>
<input class=formElement type=text name=STREETADDR2_PLACEHOLDER>
</td>
</tr>
<tr width=100%>
<td class=formElementLabel>
City:
</td>
<td>
<input class=formElement type=text name=CITY_PLACEHOLDER>
</td>
</tr>
<tr width=100%>
<td class=formElementLabel>
State:
</td>
<td>
<select class=formElement name=PARTNER_STATE_PLACEHOLDER>
</select>
</td>
</tr>
<tr width=100%>
<td class=formElementLabel>
Zip/Postal Code:
</td>
<td>
<input class=formElement type=text name=ZIPCODE_PLACEHOLDER>
</td>
</tr>
<tr width=100%>
<td class=formElementLabel>
Country:
</td>
<td>
<input class=formElement type=text name=COUNTRY_PLACEHOLDER>
</td>
</tr>
</table>
<!-- end content area -->
</td>
</tr>
<!-- end outer table -->
</table>
</body>
</form>
</html>