List the 5 most common specialised text-entry fields (in forms).

  • Password entry field:
  • <input type="password">

    Bear in mind that the password is not really encrypted. It's only hidden from casual onlookers.

  • Search field:
  • <input type="search">
  • Email field:
  • <input type="email">
  • Telephone number:
  • <input type="tel">
  • URL field:
  • <input type="url">