Huitzilopochtli
Programmer
Hello
I have a form and I know how to use the font attribute so that the user types in verdana, Times, etc, as in:
<form method="post" action="submit.asp">
<p><font face="verdana" color="white" size="1"><b>Topic: </b></font> <input type="text" name="topic" size="20"></p>
but how do I control the font in the textarea? What I have is the following, but it ignores 'font' and writes in Times. I would like it to be consistent with the other fields I have (that is, verdana)?
<font face="verdana" color="white" size="1"><b>Message: </b></font><br>
<textarea name="body" rows="9" cols="40"></textarea><br>
<p align=center><input type="submit" value="Submit">
<input type="reset" value="Reset"></p>
</form>
Many thanks for any suggestions
Huitzilopochtli
I have a form and I know how to use the font attribute so that the user types in verdana, Times, etc, as in:
<form method="post" action="submit.asp">
<p><font face="verdana" color="white" size="1"><b>Topic: </b></font> <input type="text" name="topic" size="20"></p>
but how do I control the font in the textarea? What I have is the following, but it ignores 'font' and writes in Times. I would like it to be consistent with the other fields I have (that is, verdana)?
<font face="verdana" color="white" size="1"><b>Message: </b></font><br>
<textarea name="body" rows="9" cols="40"></textarea><br>
<p align=center><input type="submit" value="Submit">
<input type="reset" value="Reset"></p>
</form>
Many thanks for any suggestions
Huitzilopochtli