Welcome to HiQPdf Demo
HTML to PDF
HTML to PDF Converter Demo
Convert Many HTMLs to PDF
HTML Fitting and Scaling Options
Convert a Selected HTML Region
Headers and Footers in PDF
Convert Web Pages Preserving State
Set PDF Pages Background
HTML Elements Position in PDF
Set Conversion Triggering Mode
Auto Create Outlines and Links
Auto Create Table of Contents
Auto Create PDF Forms
Repeat Table Header and Footer
Control PDF Page Breaks with CSS
Select Media Type for Rendering
Web Fonts Advanced Support
PDF Security Settings
HTML to Image
HTML to SVG
PDF Forms
Create and Submit PDF Forms
Fill and Save PDF Forms
Set an Open Action in PDF
Create Outlines and Links in PDF
Create File Attachments in PDF
Add HTML Objects in PDF
Add Text Objects in PDF
Add Image Objects in PDF
Add Graphic Objects in PDF
PDF Document Security
Add Digital Signatures in PDF
Edit PDF Documents
Merge PDF Documents
Extract Text from PDF
Search Text in PDF
Extract Images from PDF
Rasterize PDF Pages to Images
Convert PDF to HTML
In this demo you learn how to automatically create a PDF form from a HTML form. You can fill and submit the generated PDF form.
HTML Code
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>Auto Create PDF Forms from HTML Forms</title> </head> <body style="font-family: 'Times New Roman'; font-size: 14px"> <form name="subscrForm" action="http://www.hiqpdf.com/formsubmitaction/" method="post"> Name:<br /> <input style="width: 200px" type="text" name="subscrName"> <br /> <br /> Email :<br /> <input style="width: 200px" type="text" name="subscrEmail"><br /> <br /> Website:<br /> <input style="width: 200px" type="text" name="subscrWebsite"><br /> <br /> Password:<br /> <input style="width: 200px" type="password" name="subscrPassword"><br /> <br /> Gender: <input type="radio" name="subscrGender" value="male" checked="checked">Male <input type="radio" name="subscrGender" value="female">Female<br /> <br /> Domains of interest: <select name="subscrDomains"> <option value="science" selected="selected">Science</option> <option value="culture">Culture</option> <option value="music">Music</option> </select><br /> <br /> Newsletter: <input type="checkbox" name="receiveNewsletterEmail" value="email" checked="checked">By email <input type="checkbox" name="receiveNewsletterPost" value="post">By post <br /> <br /> Short description:<br /> <textarea name="subscrDescription" style="width: 300px; height: 100px"></textarea> <br /> <br /> <input type="submit" name="submitButton" value="Submit Form"> </form> </body> </html>
Auto Create PDF Form