Tuesday 17 July 2012

How to create Create text fields using html


<!DOCTYPE html>
<html>
<body>

<form action="">
First name: <input type="text" name="firstname" /><br />
Last name: <input type="text" name="lastname" />
</form>

<p><b>Note:</b> The form itself is not visible. Also note that the default width of a text field is 20 characters.</p>

</body>
</html>

0 Responses to “How to create Create text fields using html”

Post a Comment