VOOZH about

URL: https://www.geeksforgeeks.org/html/html-input-typehidden/

⇱ HTML <input type="hidden"> - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

HTML <input type="hidden">

Last Updated : 25 May, 2026

The HTML <input type="hidden"> element is used to store hidden data in a form that is not visible to users. It is commonly used to send additional information during form submission.

  • Used to store hidden form data that is not displayed on the webpage.
  • Created using <input type="hidden"> inside a form.
  • Supports attributes like name, value, and id.

Syntax:

<input type="hidden"> 

Example: Demonstrates the use of HTML <input type="hidden"> element.

Comment
Article Tags: