From zero to generating your first Document
Last updated March 23, 2026
Create an account on PDFMonkey
To create an account, go to the Register page and fill in your email and password.
Once you’ve filled in your credentials, we will send you an activation email. Click the link in the email to activate your account. You will not be able to sign in until your account is confirmed.
Sign in
Once your account confirmed, fill in your credentials in the Sign in page to get access to your dashboard.
Create your first Template
To create a template, head to the Templates page and click on Create my first Template.
Give a name to your template, select the Code edition mode and select the Base Template named Blank.
It will open the Template Editor, where PDFMonkey’s magic happens.
Writing your first Template
In the HTML tab, insert the following code:
<p>Hello {{name}}!</p>
In the CSS tab, insert the following code:
p {
color: #6D28D9;
font-size: 24px;
}
And finally in the Test data tab, insert this:
{
"name": "Peter Parker"
}
You can now click on the Save button, and you should see the preview panel on the right update to reflect your changes.
Real PDF preview
The last step is to make your Template available for generation. To do so, click on the Publish button.
For more on template syntax, see the Code Templates section. Learn about using dynamic data to preview your templates.
Generating your first Document
Now that your Template is complete, let’s head to the Documents page.
Once there, click on the Create my first Document button. In the next page, select your template from the dropdown list presented to you and click on Create a draft.
It will open the Document Editor, letting you specify data and meta-data for your Document.
By default you will be shown an editable copy of the test data you’ve added to your Template. Let’s update it to the following:
{
"name": "Spider-man"
}
Now head to the Meta data tab and insert the following to customise the PDF filename:
{
"_filename": "hello-spider-man.pdf"
}
Click on the Save button. The preview will refresh, showing you an up-to-date version of the PDF.
Finally click on Generate.
That’s it! You generated your very first Document with PDFMonkey!
If something goes wrong, check the Troubleshooting section.