Computer Applications

HTML provides an attribute for the <input> tag that allows you to hide data with some designated character to make it secure.

  1. True
  2. False

HTML Advanced Features

2 Likes

Answer

True

Reason — We 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 asterisk in place of every character. Consider the following example,

<INPUT TYPE = "PASSWORD" NAME = "PWD" />

Answered By

1 Like


Related Questions