Dear friends,
This query regarding to html and css
i am having a form in the following manner
<?php
echo"<html>
<body>
<form name=frmlogin>
Select a Subject
<select name=job>
<option value=1>PHP</option>
<option value=2>PERL</option>
<option value=3>ASP</option>
<option value=4>JSP</option>
</select>
<input type=submit name=submit value=submit>
</form>
</body>
</html>";
?>
when this form is displaying the option PHP should be bold and in redcolor
how can we do this
regards
bvsureshbabu