{"id":2922,"date":"2017-11-09T19:34:02","date_gmt":"2017-11-09T19:34:02","guid":{"rendered":"https:\/\/www.codexworld.com\/?p=2922"},"modified":"2023-04-15T05:19:23","modified_gmt":"2023-04-15T05:19:23","slug":"embed-pdf-document-file-in-html-web-page","status":"publish","type":"post","link":"https:\/\/www.codexworld.com\/embed-pdf-document-file-in-html-web-page\/","title":{"rendered":"How to Embed PDF Document in HTML Web Page"},"content":{"rendered":"<p>Generally, a hyperlink is used to link a PDF document to display in the browser. An HTML anchor link is the easiest way to display a PDF file. But if you want to display a PDF document on the web page, PDF file needs to be embedded in HTML. The HTML <span class=\"hljs-tag\" style=\"color: rgb(186, 98, 54);\">&lt;<span class=\"hljs-name\" style=\"color: rgb(186, 98, 54);\">embed<\/span>&gt;<\/span> tag is the best option to <b>embed PDF document on the web page<\/b>. In this tutorial, we will show you how to <b>display PDF file<\/b> in the web page using HTML <span class=\"hljs-tag\" style=\"color: rgb(186, 98, 54);\">&lt;<span class=\"hljs-name\" style=\"color: rgb(186, 98, 54);\">embed<\/span>&gt;<\/span> tag.<\/p>\n<p>The HTML <span class=\"hljs-tag\" style=\"color: rgb(186, 98, 54);\">&lt;<span class=\"hljs-name\" style=\"color: rgb(186, 98, 54);\">embed<\/span>&gt;<\/span> tag defines a container to load external content in the web page. The following parameters can be specified in the <span class=\"hljs-tag\" style=\"color: rgb(186, 98, 54);\">&lt;<span class=\"hljs-name\" style=\"color: rgb(186, 98, 54);\">embed<\/span>&gt;<\/span> tag.<\/p>\n<ul class=\"bullet_disk_list\">\n<li><b>src<\/b> \u2013 Specify the path of the external file to embed.<\/li>\n<li><b>type<\/b> \u2013 Specify the media type of the embedded content.<\/li>\n<li><b>width<\/b> \u2013 Specify the width of the embedded content.<\/li>\n<li><b>height<\/b> \u2013 Specify the height of the embedded content.<\/li>\n<\/ul>\n<h2>Embed PDF File in HTML<\/h2>\n<p>Use the following code to embed the PDF file in the HTML web page.<\/p>\n<pre style=\"color: rgb(95, 94, 78);\"><span class=\"hljs-tag\" style=\"color: rgb(186, 98, 54);\">&lt;<span class=\"hljs-name\" style=\"color: rgb(186, 98, 54);\">embed<\/span> <span class=\"hljs-attr\">src<\/span>=<span class=\"hljs-string\" style=\"color: rgb(125, 151, 38);\">\"files\/Brochure.pdf\"<\/span> <span class=\"hljs-attr\">type<\/span>=<span class=\"hljs-string\" style=\"color: rgb(125, 151, 38);\">\"application\/pdf\"<\/span> <span class=\"hljs-attr\">width<\/span>=<span class=\"hljs-string\" style=\"color: rgb(125, 151, 38);\">\"100%\"<\/span> <span class=\"hljs-attr\">height<\/span>=<span class=\"hljs-string\" style=\"color: rgb(125, 151, 38);\">\"600px\"<\/span> \/&gt;<\/span><\/pre>\n<h2>PDF Document View Configuration<\/h2>\n<p>Now we will show how you can control the PDF document view on the web page. Using parameters in the URL, you can specify exactly what to display and how to display PDF documents.<br \/>\nThe following parameters are commonly used to <b>embed PDF files in HTML<\/b> or open in the browser.<\/p>\n<ul class=\"bullet_disk_list\">\n<li><b>page=pagenum<\/b> \u2013 Specifies a number (integer) of the page in the document. The document\u2019s first page has a pagenum value of 1.<\/li>\n<li><b>zoom=scale<\/b> \u2013 Sets the zoom and scroll factors, using float or integer values. For example, a scale value of 100 indicates a zoom value of 100%.<\/li>\n<li><b>view=Fit<\/b> \u2013 Set the view of the displayed page.<\/li>\n<li><b>scrollbar=1|0<\/b> \u2013 Turns scrollbars on or off.<\/li>\n<li><b>toolbar=1|0<\/b> \u2013 Turns the toolbar on or off.<\/li>\n<li><b>statusbar=1|0<\/b> \u2013 Turns the status bar on or off.<\/li>\n<li><b>navpanes=1|0<\/b> \u2013 Turns the navigation panes and tabs on or off.<\/li>\n<\/ul>\n<h2>Specifying Parameters in URL<\/h2>\n<p>You can specify multiple parameters in the URL. Each parameter should be separated with either an ampersand (<code>&<\/code>) or a pound (<code>#<\/code>) character. Actions are executed from left to right and later actions will override the previous actions.<\/p>\n<pre>http:\/\/example.com\/doc.pdf#Chapter5\r\nhttp:\/\/example.com\/doc.pdf#page=5\r\nhttp:\/\/example.com\/doc.pdf#page=3&zoom=200,250,100\r\nhttp:\/\/example.com\/doc.pdf#zoom=100\r\nhttp:\/\/example.com\/doc.pdf#page=72&view=fitH,100\r\n<\/pre>\n<h2>Disable and Hide Toolbar in PDF Web Viewer<\/h2>\n<p>This example shows how to hide or remove the toolbar, navpanes, and scrollbar of the PDF file opened in HTML <span class=\"hljs-tag\" style=\"color: rgb(186, 98, 54);\">&lt;<span class=\"hljs-name\" style=\"color: rgb(186, 98, 54);\">embed<\/span>&gt;<\/span> using parameters in URL.<\/p>\n<p>Use the following code to <b>embed PDF document<\/b> in the web page and remove or hide the toolbar of embedded PDF.<\/p>\n<pre>&lt;<span style=\"color:#bf4f24\">embed<\/span> <span style=\"color:#bf4f24\">src<\/span>=<span style=\"color:#0b6125\">\"files\/Brochure.pdf#toolbar=0&amp;navpanes=0&amp;scrollbar=0\"<\/span> <span style=\"color:#bf4f24\">type<\/span>=<span style=\"color:#0b6125\">\"application\/pdf\"<\/span> <span style=\"color:#bf4f24\">width<\/span>=<span style=\"color:#0b6125\">\"100%\"<\/span> <span style=\"color:#bf4f24\">height<\/span>=<span style=\"color:#0b6125\">\"600px\"<\/span> \/&gt;\r\n<\/pre>\n<p class=\"seeAlso\"><span><\/span><a href=\"https:\/\/www.codexworld.com\/convert-html-to-pdf-using-javascript-jspdf\/\">Convert HTML to PDF using JavaScript <\/a><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Generally, a hyperlink is used to link a PDF document to display in the browser. An HTML anchor link is the easiest way to display a PDF file. But if you want to display a <\/p>\n","protected":false},"author":1,"featured_media":2923,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[130],"tags":[179,181],"class_list":["post-2922","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-html-css","tag-html","tag-pdf","cat-130-id","has_thumb"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Embed PDF Document in HTML Web Page - CodexWorld<\/title>\n<meta name=\"description\" content=\"Embed PDF in HTML - Simple way to display PDF document in the web page using HTML embed tag. Example code to embed PDF file in the HTML web page and hide toolbar of embedded PDF.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.codexworld.com\/embed-pdf-document-file-in-html-web-page\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Embed PDF Document in HTML Web Page - CodexWorld\" \/>\n<meta property=\"og:description\" content=\"Embed PDF in HTML - Simple way to display PDF document in the web page using HTML embed tag. Example code to embed PDF file in the HTML web page and hide toolbar of embedded PDF.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.codexworld.com\/embed-pdf-document-file-in-html-web-page\/\" \/>\n<meta property=\"og:site_name\" content=\"CodexWorld\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codexworld\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/codexworld\" \/>\n<meta property=\"article:published_time\" content=\"2017-11-09T19:34:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-04-15T05:19:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.codexworld.com\/wp-content\/uploads\/2017\/11\/embed-pdf-document-file-in-html-web-page-codexworld.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1366\" \/>\n\t<meta property=\"og:image:height\" content=\"768\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"CodexWorld\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codexworldblog\" \/>\n<meta name=\"twitter:site\" content=\"@codexworldweb\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"CodexWorld\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/embed-pdf-document-file-in-html-web-page\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/embed-pdf-document-file-in-html-web-page\\\/\"},\"author\":{\"name\":\"CodexWorld\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#\\\/schema\\\/person\\\/9da51d8fa3cdefeb5ec9c69136d4baf0\"},\"headline\":\"How to Embed PDF Document in HTML Web Page\",\"datePublished\":\"2017-11-09T19:34:02+00:00\",\"dateModified\":\"2023-04-15T05:19:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/embed-pdf-document-file-in-html-web-page\\\/\"},\"wordCount\":424,\"commentCount\":6,\"publisher\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/embed-pdf-document-file-in-html-web-page\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.codexworld.com\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/embed-pdf-document-file-in-html-web-page-codexworld.png\",\"keywords\":[\"HTML\",\"PDF\"],\"articleSection\":[\"HTML&amp;CSS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.codexworld.com\\\/embed-pdf-document-file-in-html-web-page\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/embed-pdf-document-file-in-html-web-page\\\/\",\"url\":\"https:\\\/\\\/www.codexworld.com\\\/embed-pdf-document-file-in-html-web-page\\\/\",\"name\":\"How to Embed PDF Document in HTML Web Page - CodexWorld\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/embed-pdf-document-file-in-html-web-page\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/embed-pdf-document-file-in-html-web-page\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.codexworld.com\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/embed-pdf-document-file-in-html-web-page-codexworld.png\",\"datePublished\":\"2017-11-09T19:34:02+00:00\",\"dateModified\":\"2023-04-15T05:19:23+00:00\",\"description\":\"Embed PDF in HTML - Simple way to display PDF document in the web page using HTML embed tag. Example code to embed PDF file in the HTML web page and hide toolbar of embedded PDF.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/embed-pdf-document-file-in-html-web-page\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.codexworld.com\\\/embed-pdf-document-file-in-html-web-page\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/embed-pdf-document-file-in-html-web-page\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.codexworld.com\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/embed-pdf-document-file-in-html-web-page-codexworld.png\",\"contentUrl\":\"https:\\\/\\\/www.codexworld.com\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/embed-pdf-document-file-in-html-web-page-codexworld.png\",\"width\":1366,\"height\":768,\"caption\":\"embed-pdf-document-file-in-html-web-page-codexworld\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/embed-pdf-document-file-in-html-web-page\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.codexworld.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Embed PDF Document in HTML Web Page\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#website\",\"url\":\"https:\\\/\\\/www.codexworld.com\\\/\",\"name\":\"CodexWorld\",\"description\":\"Web &amp; Mobile App Development Company\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.codexworld.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#organization\",\"name\":\"CodexWorld\",\"url\":\"https:\\\/\\\/www.codexworld.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.codexworld.com\\\/wp-content\\\/uploads\\\/2014\\\/09\\\/codexworld-logo.png\",\"contentUrl\":\"https:\\\/\\\/www.codexworld.com\\\/wp-content\\\/uploads\\\/2014\\\/09\\\/codexworld-logo.png\",\"width\":200,\"height\":19,\"caption\":\"CodexWorld\"},\"image\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/codexworld\",\"https:\\\/\\\/x.com\\\/codexworldweb\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/codexworld\",\"https:\\\/\\\/www.youtube.com\\\/codexworld\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#\\\/schema\\\/person\\\/9da51d8fa3cdefeb5ec9c69136d4baf0\",\"name\":\"CodexWorld\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cf4999db3b409de559f80677afa01729bb2eeda19be273c254e8b2c22729e386?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cf4999db3b409de559f80677afa01729bb2eeda19be273c254e8b2c22729e386?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cf4999db3b409de559f80677afa01729bb2eeda19be273c254e8b2c22729e386?s=96&r=g\",\"caption\":\"CodexWorld\"},\"description\":\"CodexWorld is a programming blog, one-stop destination for web professionals \u2014 developers, programmers, freelancers, and site owners.\",\"sameAs\":[\"http:\\\/\\\/www.codexworld.com\",\"https:\\\/\\\/www.facebook.com\\\/codexworld\",\"https:\\\/\\\/x.com\\\/codexworldblog\"],\"url\":\"https:\\\/\\\/www.codexworld.com\\\/author\\\/nitya192265\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Embed PDF Document in HTML Web Page - CodexWorld","description":"Embed PDF in HTML - Simple way to display PDF document in the web page using HTML embed tag. Example code to embed PDF file in the HTML web page and hide toolbar of embedded PDF.","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:\/\/www.codexworld.com\/embed-pdf-document-file-in-html-web-page\/","og_locale":"en_US","og_type":"article","og_title":"How to Embed PDF Document in HTML Web Page - CodexWorld","og_description":"Embed PDF in HTML - Simple way to display PDF document in the web page using HTML embed tag. Example code to embed PDF file in the HTML web page and hide toolbar of embedded PDF.","og_url":"https:\/\/www.codexworld.com\/embed-pdf-document-file-in-html-web-page\/","og_site_name":"CodexWorld","article_publisher":"https:\/\/www.facebook.com\/codexworld","article_author":"https:\/\/www.facebook.com\/codexworld","article_published_time":"2017-11-09T19:34:02+00:00","article_modified_time":"2023-04-15T05:19:23+00:00","og_image":[{"width":1366,"height":768,"url":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2017\/11\/embed-pdf-document-file-in-html-web-page-codexworld.png","type":"image\/png"}],"author":"CodexWorld","twitter_card":"summary_large_image","twitter_creator":"@codexworldblog","twitter_site":"@codexworldweb","twitter_misc":{"Written by":"CodexWorld","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.codexworld.com\/embed-pdf-document-file-in-html-web-page\/#article","isPartOf":{"@id":"https:\/\/www.codexworld.com\/embed-pdf-document-file-in-html-web-page\/"},"author":{"name":"CodexWorld","@id":"https:\/\/www.codexworld.com\/#\/schema\/person\/9da51d8fa3cdefeb5ec9c69136d4baf0"},"headline":"How to Embed PDF Document in HTML Web Page","datePublished":"2017-11-09T19:34:02+00:00","dateModified":"2023-04-15T05:19:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.codexworld.com\/embed-pdf-document-file-in-html-web-page\/"},"wordCount":424,"commentCount":6,"publisher":{"@id":"https:\/\/www.codexworld.com\/#organization"},"image":{"@id":"https:\/\/www.codexworld.com\/embed-pdf-document-file-in-html-web-page\/#primaryimage"},"thumbnailUrl":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2017\/11\/embed-pdf-document-file-in-html-web-page-codexworld.png","keywords":["HTML","PDF"],"articleSection":["HTML&amp;CSS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.codexworld.com\/embed-pdf-document-file-in-html-web-page\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.codexworld.com\/embed-pdf-document-file-in-html-web-page\/","url":"https:\/\/www.codexworld.com\/embed-pdf-document-file-in-html-web-page\/","name":"How to Embed PDF Document in HTML Web Page - CodexWorld","isPartOf":{"@id":"https:\/\/www.codexworld.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.codexworld.com\/embed-pdf-document-file-in-html-web-page\/#primaryimage"},"image":{"@id":"https:\/\/www.codexworld.com\/embed-pdf-document-file-in-html-web-page\/#primaryimage"},"thumbnailUrl":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2017\/11\/embed-pdf-document-file-in-html-web-page-codexworld.png","datePublished":"2017-11-09T19:34:02+00:00","dateModified":"2023-04-15T05:19:23+00:00","description":"Embed PDF in HTML - Simple way to display PDF document in the web page using HTML embed tag. Example code to embed PDF file in the HTML web page and hide toolbar of embedded PDF.","breadcrumb":{"@id":"https:\/\/www.codexworld.com\/embed-pdf-document-file-in-html-web-page\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.codexworld.com\/embed-pdf-document-file-in-html-web-page\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.codexworld.com\/embed-pdf-document-file-in-html-web-page\/#primaryimage","url":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2017\/11\/embed-pdf-document-file-in-html-web-page-codexworld.png","contentUrl":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2017\/11\/embed-pdf-document-file-in-html-web-page-codexworld.png","width":1366,"height":768,"caption":"embed-pdf-document-file-in-html-web-page-codexworld"},{"@type":"BreadcrumbList","@id":"https:\/\/www.codexworld.com\/embed-pdf-document-file-in-html-web-page\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.codexworld.com\/"},{"@type":"ListItem","position":2,"name":"How to Embed PDF Document in HTML Web Page"}]},{"@type":"WebSite","@id":"https:\/\/www.codexworld.com\/#website","url":"https:\/\/www.codexworld.com\/","name":"CodexWorld","description":"Web &amp; Mobile App Development Company","publisher":{"@id":"https:\/\/www.codexworld.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.codexworld.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.codexworld.com\/#organization","name":"CodexWorld","url":"https:\/\/www.codexworld.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.codexworld.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2014\/09\/codexworld-logo.png","contentUrl":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2014\/09\/codexworld-logo.png","width":200,"height":19,"caption":"CodexWorld"},"image":{"@id":"https:\/\/www.codexworld.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codexworld","https:\/\/x.com\/codexworldweb","https:\/\/www.linkedin.com\/company\/codexworld","https:\/\/www.youtube.com\/codexworld"]},{"@type":"Person","@id":"https:\/\/www.codexworld.com\/#\/schema\/person\/9da51d8fa3cdefeb5ec9c69136d4baf0","name":"CodexWorld","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/cf4999db3b409de559f80677afa01729bb2eeda19be273c254e8b2c22729e386?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/cf4999db3b409de559f80677afa01729bb2eeda19be273c254e8b2c22729e386?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cf4999db3b409de559f80677afa01729bb2eeda19be273c254e8b2c22729e386?s=96&r=g","caption":"CodexWorld"},"description":"CodexWorld is a programming blog, one-stop destination for web professionals \u2014 developers, programmers, freelancers, and site owners.","sameAs":["http:\/\/www.codexworld.com","https:\/\/www.facebook.com\/codexworld","https:\/\/x.com\/codexworldblog"],"url":"https:\/\/www.codexworld.com\/author\/nitya192265\/"}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2017\/11\/embed-pdf-document-file-in-html-web-page-codexworld.png","jetpack_shortlink":"https:\/\/wp.me\/p6bxIh-L8","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/posts\/2922","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/comments?post=2922"}],"version-history":[{"count":6,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/posts\/2922\/revisions"}],"predecessor-version":[{"id":5319,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/posts\/2922\/revisions\/5319"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/media\/2923"}],"wp:attachment":[{"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/media?parent=2922"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/categories?post=2922"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/tags?post=2922"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}