Posts

Showing posts with the label textbox

ADDING A PASSWORD TEXT BOX

Image
ADDING A PASSWORD TEXT BOX Adding a password text box is as similar as adding a simple text box only we have to change few words in input tag so the syntax of input tag is <input type="password" placeholder="password" size="50"> EXAMPLE CODE OUTPUT

ADDING A TEXT BOX IN HTML..

Image
ADDING TEXT BOX  We can add multiple text box in a html page and we can enter and store the required text  adding a text box is very simple and its very simple to implement. THERE ARE FEW TERMINOLOGY AND SYNTAX REQUIRED TO BE FOLLOWED LABEL TAG we have to add label for the text box. In label we have to specify for.  after for we have to write the label. and the close the label tag. INPUT TAG  first open the tag and use input  specify the type  use the placeholder and place the holder specify the size of the box and text EXAMPLE                                              CODE  OUTPUT