Computer Applications

Tag to create password field in HTML document :

  1. <password>
  2. <input>
  3. <pwd>
  4. <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

2 Likes


Related Questions