🎓 Create Unlimited FREE PDF's (No Integrations/Fees)

You can definitely create the invoice you linked! It will take a little knowledge of HTML to get it done, but it’s 100% possible.

An example of the simplest HTML you could try is:

// Most Basic
<h1>Invoice #123</h1>

// Or a basic table:
<table>
  <tr>
    <th>Name</th>
    <th>Email</th>
  </tr>
  <tr>
    <td>Marco Volpato</td>
    <td>teacher@loqode.com</td>
  </tr>
</table>

The table will look as follows in the pdf:

Name Email
Marco Volpato teacher@loqode.com

And you can then continue to build it out from there :+1: