Computer Applications
You can mask the input typed into a text field by specifying an <input>
tag as …………… .
- password
- secure
- invisible
- hidden
HTML Advanced Features
3 Likes
Answer
password
Reason — You can mask the input typed into a text field by specifying an <input>
tag as password. It hides the characters input in the box and shows dots or asterisk in place of every character.
Answered By
3 Likes
Related Questions
Consider the following form control in a HTML form :
x Male x Female
Now choose the correct line of code for the above :
<input type = "radio" name= "Gender" value= "male">Male<br> <input type = "radio" name= "Gender" value= "female">Female<br>
2.
<input type = "radiobutton" name = "Gender" value= "male">Male<br> <input type = "radiobutton" name = "Gender" value= female">Female<br>
<input type = "radio", name = "Gender">< value= "male">Male <input type = "radio", name = "Gender">< value= "female">Female
4.
<input type = "radio" name= "Gender" value= "male"><br> <input type = "radio" name= "Gender" value = "female"><br>
A developer can restrict the values accepted in a text field by specifying a …………… attribute.
- size
- maxlength
- value
- You cannot restrict text values using HTML
Tag to create password field in HTML document :
<password>
<input>
<pwd>
<pword>
HTML provides an attribute for the
<input>
tag that allows you to hide data with some designated character to make it secure.- True
- False