HTML Form tags, Form, input (text box, password, button, submit, textarea) and form attributes
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>
</form>
<label for="password">Password: </label>
<input type = "password" id="pWord" name="password">
<input type = "password" id="pWord" name="password">
</form>
Output:
