2. HTML Form Tag

2.2. Password


          Password is used to accept password input from the user. When the user is typing, the characters are displayed as black circles instead of the character being typed.

 <form>

    <label for="password">Password: </label>

    <input type = "password" id="pWord" name="password">

</form>


 Output: