HTML - Password Fields
HTML password fields are designed to capture user input, but disguise each character with an asterisk (*) instead of displaying the entered digits. They offer a user on-screen privacy while he or she is entering a password.
Password fields are placed on a website using the <input> tag and specify a value of "password" for the type attribute.
HTML Password Field Code
<form name="myWebForm" action="mailto:youremail@email.com" method="post">
Password: <input type="password" title="Please Enter Your Password" size="8" /><br />
<input type="submit" value="SUBMIT" />
</form>
HTML Password Fields
Password: