WEB BROWSERS TECHNOLOGY
WHAT IS WEB TECHNOLOGY
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
Choose correct code for creating a password textbox?
|
<input type=“pass” name=“t2”>
|
|
<input type=“password” name=“t2”>
|
|
<input type=“Invisible” name=“t2”>
|
|
<input type=“Hidden” name=“t2”>
|
Explanation:
Detailed explanation-1: -<input type="password"> <input> elements of type password provide a way for the user to securely enter a password.
Detailed explanation-2: -The <input type="password"> defines a password field (characters are masked). Note: Any forms involving sensitive information like passwords should be served over HTTPS.
Detailed explanation-3: -The <input> tag with a type="password” attribute creates a text field where users can securily enter a password. As characters are entered, they are replaced by a dot ("•") or asterisk ("*") symbol, depending on the browser.
Detailed explanation-4: -Type the <input type="password"> tag.
There is 1 question to complete.