HTML Question How to?

  • Thread starter Thread starter BSTA
  • Start date Start date
B

BSTA

Guest
How to make a text box on my website, I started html and i would like to know how?

Here is a image of an example of text box

http://img178.imageshack.us/img178/7964/textboxsi3.jpg

Thanks
 
<form action="#" type="post" style="background-color: #000066; height: 40px; width: 300px;">
<label for="fullname" style="font-family: Verdana, Helvetica, Arial, sans-serif; font-size: 12px; font-weight: 600; color: #aaaaaa; text-align: middle; margin-left: 15px; position: relative; top: 8px;">Full Name:</label>
<input type="text" style="font-family: Verdana, Helvetica, Arial, sans-serif; font-size: 14px; position: relative; top: 8px;" name="fullname" id="fullname">
 
Back
Top