How to change the defualt font in a textbox

ey i have a question…
how do u change the font in a text box?
i dont know how to do it please help.
thanks!

<input type="text" name="blahhh!" size="10" style="font-family: Verdana">

Viper you forgot value="your default value here"
and to change it is like this.

onFocus="this.value='';"

that will set the value to blank when the focus is on that control

that’s css right?
by the way…
thanks!

no that is not css. you put that in your input tag for your form field.

If you want to use css in that onFocus here is the syntax:

onFocus=“this.className=‘your class here’”