PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!DOCTYPE html> <html> <body> <h1>input type="hidden" attribute example</h1> <form action="/action_page.php"> <label for="fname">write you'r First name:</label> <input type="text" id="fname" name="fname"><br><br> <input type="hidden" id="custId" name="custId" value="2023"> <input type="submit" value="Submit"> </form> <p>The field information will not be shown to the user but will be sent at the time of submission.</p> </body> </html>