+ 1
Form Question
<input name="name" type="text" />Name<br /> I'm trying to figure out how to get the word "Name" to show up inside the field instead of to the right of it. can someone please help me out here?
3 Respuestas
+ 4
another option,
<input type="#" placeholder="#">
+ 3
Just add the placeholder attribute as...
placeholder="Name" inside input tag
+ 2
Thank you!