You can use the type attribute with the value hidden. Here's an example:
<form>
<input type="hidden" name="hidden_field" value="hidden_value">
<!-- Other form fields -->
</form>
In this example, the input field with the name hidden_field and value hidden_value is a hidden field that will be submitted with the form, but its value will not be visible to the user.