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

**URL:** https://community.glideapps.com/t/create-unlimited-free-pdfs-no-integrations-fees/62116
**Category:** Community Resources
**Tags:** tutorial
**Created:** [May 24, 2023, 10:59pm UTC](https://community.glideapps.com/t/create-unlimited-free-pdfs-no-integrations-fees/62116 "2023-05-24T22:59:16Z")
**Posts on this page:** 1
**Showing post:** 16

<div class="post-metadata">

### Author: ![Loqode](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/loqode/32/50217_2.png) [@Loqode](https://community.glideapps.com/u/Loqode)
#### Post date: [May 28, 2023, 11:42pm UTC](https://community.glideapps.com/t/create-unlimited-free-pdfs-no-integrations-fees/62116/16 "2023-05-28T23:42:48Z")

</div>

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:

```auto
// 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 👍

---

_[View the full topic](https://community.glideapps.com/t/create-unlimited-free-pdfs-no-integrations-fees/62116)._
