{"id":2794,"date":"2026-06-18T17:21:12","date_gmt":"2026-06-18T17:21:12","guid":{"rendered":"https:\/\/gopdf.io\/blog\/?p=2794"},"modified":"2026-06-18T17:22:03","modified_gmt":"2026-06-18T17:22:03","slug":"embed-a-pdf-in-html","status":"publish","type":"post","link":"https:\/\/gopdf.io\/blog\/embed-a-pdf-in-html\/","title":{"rendered":"Embed a PDF in HTML"},"content":{"rendered":"<p>Embedding a PDF in a web page means displaying the document inline visitors read it without leaving the page or downloading a file. HTML offers a few native ways to do this, each with different tradeoffs in control, compatibility, and mobile behavior. The right choice depends on how much you care about consistent rendering across devices, because browsers handle inline PDFs less uniformly than people expect.<\/p>\n<h2>How Browsers Display PDFs<\/h2>\n<p>Most desktop browsers include a built-in PDF viewer, so an embedded PDF renders directly in the page. Mobile browsers are the complication: many don\u2019t render inline PDFs well and instead prompt a download or open a separate viewer. This single fact shapes every embedding decision \u2014 a method that looks perfect on a laptop may simply show a download link on a phone.<\/p>\n<h2>Method 1: The &lt;iframe&gt; Tag (most common)<\/h2>\n<p>An iframe loads the PDF as an embedded frame and is the most widely used approach:<\/p>\n<blockquote><p>&lt;iframe src=&#8221;document.pdf&#8221; width=&#8221;100%&#8221; height=&#8221;600px&#8221;&gt;&lt;\/iframe&gt;<\/p><\/blockquote>\n<p>It\u2019s simple, well-supported on desktop, and lets you control dimensions. You can append viewer parameters to the URL (such as <em>#page=2<\/em> or <em>#zoom=100<\/em>) to open at a specific page or zoom level. The weakness is inconsistent mobile rendering.<\/p>\n<h2>Method 2: The &lt;embed&gt; Tag<\/h2>\n<p>The embed element is purpose-built for external content:<\/p>\n<blockquote><p>&lt;embed src=&#8221;document.pdf&#8221; type=&#8221;application\/pdf&#8221; width=&#8221;100%&#8221; height=&#8221;600px&#8221;&gt;<\/p><\/blockquote>\n<p>It behaves similarly to an iframe and is concise, but it\u2019s a self-closing element with no fallback content of its own, so it offers less graceful handling when a browser can\u2019t display the PDF.<\/p>\n<h2>Method 3: The &lt;object&gt; Tag (with fallback)<\/h2>\n<p>The object element\u2019s advantage is built-in fallback content for browsers or devices that can\u2019t render the PDF:<\/p>\n<blockquote><p>&lt;object data=&#8221;document.pdf&#8221; type=&#8221;application\/pdf&#8221; width=&#8221;100%&#8221; height=&#8221;600px&#8221;&gt;&lt;p&gt;Your browser can\u2019t display this PDF. &lt;a href=&#8221;document.pdf&#8221;&gt;Download it instead.&lt;\/a&gt;&lt;\/p&gt;&lt;\/object&gt;<\/p><\/blockquote>\n<p>Because you can nest a download link inside, mobile users who can\u2019t view inline still get a working path to the file. This makes <em>object<\/em> the most resilient choice for a general audience.<\/p>\n<h2>A Practical Decision Workflow<\/h2>\n<ol>\n<li>Need the simplest desktop embed? Use an <em>iframe<\/em> and set explicit width\/height.<\/li>\n<li>Want graceful degradation for phones and old browsers? Use <em>object<\/em> with a nested download link.<\/li>\n<li>Want to open at a specific page or zoom? Append viewer parameters to the file URL.<\/li>\n<li>Care most about identical experience everywhere? Consider a JavaScript PDF rendering library that draws the document to a canvas, sidestepping native-viewer differences.<\/li>\n<li>Always provide a visible download link as a fallback, regardless of method.<\/li>\n<\/ol>\n<h2>Common Mistakes and Edge Cases<\/h2>\n<ul>\n<li><strong>Assuming mobile renders inline:<\/strong> many mobile browsers won\u2019t. Always include a download fallback.<\/li>\n<li><strong>No fallback content:<\/strong> iframe and embed show nothing useful when the viewer fails; object lets you supply an alternative.<\/li>\n<li><strong>Cross-origin restrictions:<\/strong> a PDF hosted on another domain may be blocked from embedding by security headers (such as X-Frame-Options).<\/li>\n<li><strong>Large files on slow connections:<\/strong> a heavy PDF embedded inline delays page load. <a href=\"https:\/\/gopdf.io\/features\/compress-pdf\">Compress pdf<\/a> or lazy-load the embed.<\/li>\n<li><strong>Fixed pixel heights:<\/strong> a hard-coded height clips short documents and crowds long ones. Use responsive sizing where possible.<\/li>\n<li><strong>Accessibility:<\/strong> embedded PDFs should still be reachable as a direct link, and the PDF itself should be tagged for screen readers.<\/li>\n<\/ul>\n<h2>Frequently Asked Questions<\/h2>\n<h3>Which tag should I use to embed a PDF?<\/h3>\n<p>Use <em>iframe<\/em> for simplicity on desktop, or <em>object<\/em> when you want a fallback download link for browsers and phones that can\u2019t render inline PDFs.<\/p>\n<h3>Why doesn\u2019t my embedded PDF show on mobile?<\/h3>\n<p>Many mobile browsers don\u2019t support inline PDF rendering and offer a download instead. Provide a download link as a fallback.<\/p>\n<h3>Can I open the PDF at a specific page?<\/h3>\n<p>Yes. Append viewer parameters to the URL, such as <em>#page=3<\/em> or <em>#zoom=100<\/em>, supported by most built-in viewers.<\/p>\n<h3>Why is my embedded PDF blocked?<\/h3>\n<p>The host may send security headers that prevent framing across domains. Host the PDF on the same domain or adjust the server\u2019s framing policy.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Embedding a PDF in a web page means displaying the document inline visitors read it without leaving the page or downloading a file. HTML offers a few native ways to do this, each with different tradeoffs in control, compatibility, and mobile behavior. The right choice depends on how much you care about consistent rendering across &hellip;<\/p>\n<p class=\"read-more\"> <a class=\"\" href=\"https:\/\/gopdf.io\/blog\/embed-a-pdf-in-html\/\"> <span class=\"screen-reader-text\">Embed a PDF in HTML<\/span> Read More &raquo;<\/a><\/p>\n","protected":false},"author":1,"featured_media":2840,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","footnotes":""},"categories":[16],"tags":[],"class_list":["post-2794","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-gopdf"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How Embed a PDF in HTML?<\/title>\n<meta name=\"description\" content=\"Embedding a PDF in a web page means displaying the document inline visitors read it without leaving the page or downloading a file\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/gopdf.io\/blog\/embed-a-pdf-in-html\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How Embed a PDF in HTML?\" \/>\n<meta property=\"og:description\" content=\"Embedding a PDF in a web page means displaying the document inline visitors read it without leaving the page or downloading a file\" \/>\n<meta property=\"og:url\" content=\"https:\/\/gopdf.io\/blog\/embed-a-pdf-in-html\/\" \/>\n<meta property=\"og:site_name\" content=\"GoPDF\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-18T17:21:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-18T17:22:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/gopdf.io\/blog\/wp-content\/uploads\/2026\/06\/Embed-a-PDF-in-HTML.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"640\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"gpdf_admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"gpdf_admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/embed-a-pdf-in-html\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/embed-a-pdf-in-html\\\/\"},\"author\":{\"name\":\"gpdf_admin\",\"@id\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/#\\\/schema\\\/person\\\/ac0d4317b35f6766363c6d70b4e20777\"},\"headline\":\"Embed a PDF in HTML\",\"datePublished\":\"2026-06-18T17:21:12+00:00\",\"dateModified\":\"2026-06-18T17:22:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/embed-a-pdf-in-html\\\/\"},\"wordCount\":697,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/embed-a-pdf-in-html\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Embed-a-PDF-in-HTML.jpg\",\"articleSection\":[\"gopdf\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/gopdf.io\\\/blog\\\/embed-a-pdf-in-html\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/embed-a-pdf-in-html\\\/\",\"url\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/embed-a-pdf-in-html\\\/\",\"name\":\"How Embed a PDF in HTML?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/embed-a-pdf-in-html\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/embed-a-pdf-in-html\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Embed-a-PDF-in-HTML.jpg\",\"datePublished\":\"2026-06-18T17:21:12+00:00\",\"dateModified\":\"2026-06-18T17:22:03+00:00\",\"description\":\"Embedding a PDF in a web page means displaying the document inline visitors read it without leaving the page or downloading a file\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/embed-a-pdf-in-html\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/gopdf.io\\\/blog\\\/embed-a-pdf-in-html\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/embed-a-pdf-in-html\\\/#primaryimage\",\"url\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Embed-a-PDF-in-HTML.jpg\",\"contentUrl\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Embed-a-PDF-in-HTML.jpg\",\"width\":1024,\"height\":640,\"caption\":\"Embed a PDF in HTML\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/embed-a-pdf-in-html\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Embed a PDF in HTML\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/\",\"name\":\"GoPDF\",\"description\":\"https:\\\/\\\/gopdf.io\",\"publisher\":{\"@id\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/#organization\",\"name\":\"GoPDF\",\"url\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/Logo-go-pdf.svg\",\"contentUrl\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/Logo-go-pdf.svg\",\"width\":799,\"height\":222,\"caption\":\"GoPDF\"},\"image\":{\"@id\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/#\\\/schema\\\/person\\\/ac0d4317b35f6766363c6d70b4e20777\",\"name\":\"gpdf_admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/137cc0b3bf730306c0ae9fdaa0e4ea2bc32cb1c940b8367348a74bea26942263?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/137cc0b3bf730306c0ae9fdaa0e4ea2bc32cb1c940b8367348a74bea26942263?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/137cc0b3bf730306c0ae9fdaa0e4ea2bc32cb1c940b8367348a74bea26942263?s=96&d=mm&r=g\",\"caption\":\"gpdf_admin\"},\"sameAs\":[\"https:\\\/\\\/gopdf.io.www408.your-server.de\"],\"url\":\"https:\\\/\\\/gopdf.io\\\/blog\\\/author\\\/gpdf_admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How Embed a PDF in HTML?","description":"Embedding a PDF in a web page means displaying the document inline visitors read it without leaving the page or downloading a file","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/gopdf.io\/blog\/embed-a-pdf-in-html\/","og_locale":"en_US","og_type":"article","og_title":"How Embed a PDF in HTML?","og_description":"Embedding a PDF in a web page means displaying the document inline visitors read it without leaving the page or downloading a file","og_url":"https:\/\/gopdf.io\/blog\/embed-a-pdf-in-html\/","og_site_name":"GoPDF","article_published_time":"2026-06-18T17:21:12+00:00","article_modified_time":"2026-06-18T17:22:03+00:00","og_image":[{"width":1024,"height":640,"url":"https:\/\/gopdf.io\/blog\/wp-content\/uploads\/2026\/06\/Embed-a-PDF-in-HTML.jpg","type":"image\/jpeg"}],"author":"gpdf_admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"gpdf_admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/gopdf.io\/blog\/embed-a-pdf-in-html\/#article","isPartOf":{"@id":"https:\/\/gopdf.io\/blog\/embed-a-pdf-in-html\/"},"author":{"name":"gpdf_admin","@id":"https:\/\/gopdf.io\/blog\/#\/schema\/person\/ac0d4317b35f6766363c6d70b4e20777"},"headline":"Embed a PDF in HTML","datePublished":"2026-06-18T17:21:12+00:00","dateModified":"2026-06-18T17:22:03+00:00","mainEntityOfPage":{"@id":"https:\/\/gopdf.io\/blog\/embed-a-pdf-in-html\/"},"wordCount":697,"commentCount":0,"publisher":{"@id":"https:\/\/gopdf.io\/blog\/#organization"},"image":{"@id":"https:\/\/gopdf.io\/blog\/embed-a-pdf-in-html\/#primaryimage"},"thumbnailUrl":"https:\/\/gopdf.io\/blog\/wp-content\/uploads\/2026\/06\/Embed-a-PDF-in-HTML.jpg","articleSection":["gopdf"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/gopdf.io\/blog\/embed-a-pdf-in-html\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/gopdf.io\/blog\/embed-a-pdf-in-html\/","url":"https:\/\/gopdf.io\/blog\/embed-a-pdf-in-html\/","name":"How Embed a PDF in HTML?","isPartOf":{"@id":"https:\/\/gopdf.io\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/gopdf.io\/blog\/embed-a-pdf-in-html\/#primaryimage"},"image":{"@id":"https:\/\/gopdf.io\/blog\/embed-a-pdf-in-html\/#primaryimage"},"thumbnailUrl":"https:\/\/gopdf.io\/blog\/wp-content\/uploads\/2026\/06\/Embed-a-PDF-in-HTML.jpg","datePublished":"2026-06-18T17:21:12+00:00","dateModified":"2026-06-18T17:22:03+00:00","description":"Embedding a PDF in a web page means displaying the document inline visitors read it without leaving the page or downloading a file","breadcrumb":{"@id":"https:\/\/gopdf.io\/blog\/embed-a-pdf-in-html\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/gopdf.io\/blog\/embed-a-pdf-in-html\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/gopdf.io\/blog\/embed-a-pdf-in-html\/#primaryimage","url":"https:\/\/gopdf.io\/blog\/wp-content\/uploads\/2026\/06\/Embed-a-PDF-in-HTML.jpg","contentUrl":"https:\/\/gopdf.io\/blog\/wp-content\/uploads\/2026\/06\/Embed-a-PDF-in-HTML.jpg","width":1024,"height":640,"caption":"Embed a PDF in HTML"},{"@type":"BreadcrumbList","@id":"https:\/\/gopdf.io\/blog\/embed-a-pdf-in-html\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/gopdf.io\/blog\/"},{"@type":"ListItem","position":2,"name":"Embed a PDF in HTML"}]},{"@type":"WebSite","@id":"https:\/\/gopdf.io\/blog\/#website","url":"https:\/\/gopdf.io\/blog\/","name":"GoPDF","description":"https:\/\/gopdf.io","publisher":{"@id":"https:\/\/gopdf.io\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/gopdf.io\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/gopdf.io\/blog\/#organization","name":"GoPDF","url":"https:\/\/gopdf.io\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/gopdf.io\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/gopdf.io\/blog\/wp-content\/uploads\/2023\/10\/Logo-go-pdf.svg","contentUrl":"https:\/\/gopdf.io\/blog\/wp-content\/uploads\/2023\/10\/Logo-go-pdf.svg","width":799,"height":222,"caption":"GoPDF"},"image":{"@id":"https:\/\/gopdf.io\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/gopdf.io\/blog\/#\/schema\/person\/ac0d4317b35f6766363c6d70b4e20777","name":"gpdf_admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/137cc0b3bf730306c0ae9fdaa0e4ea2bc32cb1c940b8367348a74bea26942263?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/137cc0b3bf730306c0ae9fdaa0e4ea2bc32cb1c940b8367348a74bea26942263?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/137cc0b3bf730306c0ae9fdaa0e4ea2bc32cb1c940b8367348a74bea26942263?s=96&d=mm&r=g","caption":"gpdf_admin"},"sameAs":["https:\/\/gopdf.io.www408.your-server.de"],"url":"https:\/\/gopdf.io\/blog\/author\/gpdf_admin\/"}]}},"_links":{"self":[{"href":"https:\/\/gopdf.io\/blog\/wp-json\/wp\/v2\/posts\/2794","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/gopdf.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/gopdf.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/gopdf.io\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/gopdf.io\/blog\/wp-json\/wp\/v2\/comments?post=2794"}],"version-history":[{"count":3,"href":"https:\/\/gopdf.io\/blog\/wp-json\/wp\/v2\/posts\/2794\/revisions"}],"predecessor-version":[{"id":2842,"href":"https:\/\/gopdf.io\/blog\/wp-json\/wp\/v2\/posts\/2794\/revisions\/2842"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/gopdf.io\/blog\/wp-json\/wp\/v2\/media\/2840"}],"wp:attachment":[{"href":"https:\/\/gopdf.io\/blog\/wp-json\/wp\/v2\/media?parent=2794"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/gopdf.io\/blog\/wp-json\/wp\/v2\/categories?post=2794"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/gopdf.io\/blog\/wp-json\/wp\/v2\/tags?post=2794"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}