A different attribute is the password item. It is used mainly with the purpose of logging in. Most likely, you’ve seen it in some form or another. The main purpose is to actually protect your account and not have it get screwed up by hackers. In order to get this to work properly, you need to put inside the <form> tag, though that is common sense right there. Here is the tag that it will look like. The attributes of this tag are the same as <text> attributes.

Examples

<input type=”password” name=”passwrd”>


Just a password box.

<input type=”password” name=”pass” size=”10” maxlength=”8”>


This example shows the password box with limited quantity of symbols.

As you can see above, this is the section to put up about passwords. At the end of this, you should have a better understanding on how it works. Putting in passwords could be the way to go if you are looking to add to your level of experience or for security reasons.

HTML Forms menu.