Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <p>Hidden form element is here... somewhere...</p> <input type="hidden" name="product_code" value="prod-123456"> <hr> <p>The <code>input</code> element represents a form input control in an HTML document.</p> <p>The <code>hidden</code> attribute represents a value that is not intended to be examined or manipulated by the user. It is therefore not visible to the user (unless they do things like view the page source, use developer tools to inspect the element, etc). It is typically used by scripts while processing the contents of the form.</p> <p>Other input types can include text, number, color, date, and many more.</p> <p>More info: <a href="/html/tags/html_input_tag.cfm"><code>input</code></a>.</p>