Native Pdf features

Learn how to add metadata, bookmarks into your pdf without any effort.

Metadata

Pdf metadata refers to information about the document's title, author, keywords, description and other metadata fields. You can create a Pdf filling these metadata filling meta tag or title tag.

Metadata

<title>Title of my document</title>
<meta name="keywords" content="keyword_1,keyword_2">
<meta name="author" content="Nicolas Law-dune">
<meta name="description" content="Description of my document">
<meta name="generator" content="My Company name">

Metadata

Bookmarks

With Pdfless, Pdf bookmarks is automatically generated when you define title tags on your html <h1> <h2> <h3> <h3> <h5> <h6>.

Bookmarks example

<html>
  <body>
    <h1>Bookmark example</h1>
    <h2>Subtitle h2 - part 1</h2>
    <h3>Sub-Subtitle h3 - part 1 - 1</h3>
    <h2>Subtitle h2 part 2</h2>
    <h3>Sub-Subtitle h3 - part 2 - 1</h3>
    <h3>Sub-Subtitle h3 - part 2 - 2</h3>
  </body>
</html>

Metadata

You can add links to external content to a website, and to internal content of your current document using html tag <a>

Links

<html>
  <body>
    <article id="contents">
      <h2>Summary</h2>
      <h3>External links</h3>
      <ul>
        <li><a href="https://pdfless.com">Pdfless</a></li>
        <li><a href="https://www.linkedin.com/company/pdfless">Linkedin of website</a></li>
      </ul>

      <h3>Anchors</h3>
      <ul>
        <li><a href="#job-offers"></a></li>
        <li><a href="#skills"></a></li>
      </ul>
    </article>

    <h1 id="job-offers">Job offers</h1>
    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>
    <h2 id="skills">Skills requirements</h2>
    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>
  </body>
</html>