Try the password field : Form Password Field « Form « HTML / CSS






Try the password field

<html>
<body>

<form>
Username: 
<input type="text" name="user">
<br>
Password: 
<input type="password" name="password">
</form>
<p>
Note that when you type characters in a password field, 
the browser displays asterisks or bullets instead of the characters.
</p>
</body>
</html>



           
       








Related examples in the same category

1.Password Field Example