Computer Applications
Tag to create password field in HTML document :
<password>
<input>
<pwd>
<pword>
HTML Advanced Features
1 Like
Answer
<input>
Reason — The password boxes are created using an <INPUT>
element whose TYPE attribute has a value of "password". An example is as follows:
<INPUT TYPE = "PASSWORD" NAME = "PWD" />
Answered By
3 Likes
Related Questions
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
You can mask the input typed into a text field by specifying an
<input>
tag as …………… .- password
- secure
- invisible
- hidden
HTML provides an attribute for the
<input>
tag that allows you to hide data with some designated character to make it secure.- True
- False
Which of the following tag is used to define options in a drop-down selection list ?
<select>
<list>
<dropdown>
<option>