{"id":1287,"date":"2019-05-14T17:32:05","date_gmt":"2019-05-14T17:32:05","guid":{"rendered":"https:\/\/webdevtrick.com\/?p=1287"},"modified":"2019-05-18T04:04:58","modified_gmt":"2019-05-18T04:04:58","slug":"css-text-mask","status":"publish","type":"post","link":"https:\/\/webdevtrick.com\/css-text-mask\/","title":{"rendered":"Animated CSS Text Mask With GIF | Masking In HTML CSS"},"content":{"rendered":"<p><strong>Can we create a masking effect with HTML and CSS? Yes, see this: Animated CSS Text Mask With GIF, Masking In HTML CSS.<\/strong><\/p>\n<p>If you are a graphic or <span><a href=\"https:\/\/webdevtrick.com\/web-design\/\" target=\"_blank\" rel=\"noopener noreferrer\">web design<\/a>er<\/span> then you probably know <strong>what is masking<\/strong>. Generally, we create <strong>masking<\/strong> in software, but we can also create a <strong>masking effect in coding<\/strong> with <span><a href=\"https:\/\/webdevtrick.com\/web-design\/html\/\" target=\"_blank\" rel=\"noopener noreferrer\">HTML<\/a><\/span> &amp; CSS. Do you know? all kind of shapes and effects we create in vector software, those all thinks we can create in <strong>HTML5 &amp; CSS3<\/strong>.<\/p>\n<p>So today I will show you how to create <strong>CSS Text Mask with animation effect<\/strong>. Basically, I am sharing a program called <strong>Animated CSS Text Mask<\/strong> With GIF. After seeing this, you will know how to <strong>masking in HTML CSS<\/strong>. You can also call this text masking with video because the <strong>GIF<\/strong> is moving object. That&#8217;s why the user will don&#8217;t get what you are using.<\/p>\n<p>This is a very basic program and it has fewer codes. A beginner also can understand easily how this <strong>program<\/strong> works. This is the perfect example of showing the power of<span><a href=\"https:\/\/webdevtrick.com\/tag\/pure-css\/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong> Pure CSS<\/strong><\/a><\/span> or CSS3. You can use this on your website&#8217;s banner for making your webpage attractive.<\/p>\n<p>If you don&#8217;t get what I am talking about, let&#8217;s see this <strong>preview of CSS Masking<\/strong> effect.<\/p>\n<h3>Preview Of Masking HTML CSS<\/h3>\n<p>See this video<strong> preview<\/strong> for getting an idea of how this program actually is.<\/p>\n<div style=\"width: 640px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-1287-1\" width=\"640\" height=\"244\" loop autoplay preload=\"metadata\" controls=\"controls\"><source type=\"video\/mp4\" src=\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-mask-with-gif.mp4?_=1\" \/><a href=\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-mask-with-gif.mp4\">https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-mask-with-gif.mp4<\/a><\/video><\/div>\n<p>Now you can see this program visually. If you like it, then get the <strong>source code<\/strong> of it.<\/p>\n<p><span style=\"font-size: 14pt;\">You May Also Like:<\/span><\/p>\n<ul>\n \t<span><\/p>\n<li><a href=\"https:\/\/webdevtrick.com\/animated-image-reveal-in-pure-css\/\" target=\"_blank\" rel=\"noopener noreferrer\">Animated Image Reveal in CSS<\/a><\/li>\n<li><a href=\"https:\/\/webdevtrick.com\/css-image-gallery\/\" target=\"_blank\" rel=\"noopener noreferrer\">CSS 3D Image Gallery<\/a><\/li>\n<li><a href=\"https:\/\/webdevtrick.com\/animated-text-reveal-in-pure-css\/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Reveal in Pure CSS With Animation<\/a><\/li>\n<li><a href=\"https:\/\/webdevtrick.com\/error-404-page-with-html-css-javascript\/\" target=\"_blank\" rel=\"noopener noreferrer\">Animated Error 404 Page Design<\/a><\/li>\n<p><\/span>\n<\/ul>\n<h2>Animated CSS Text Mask With GIF Source Code<\/h2>\n<p>Before sharing source code I want to say little bit <strong>about this program<\/strong>. I had checked this program in the latest version of chrome, but I don&#8217;t sure about other browsers like IE or Firefox. This concept is very simple, I had used CSS background <code>property<\/code> for creating this. And also used <code>user-select<\/code> (get <a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/CSS\/user-select\" target=\"_blank\" rel=\"noopener noreferrer\">info<\/a>)property.<\/p>\n<p>For creating this program you have to create only 2 files. First for HTML and second for CSS. Follow the steps to create this without any error.<\/p>\n<p><span style=\"font-size: 14pt;\">index.html<\/span><\/p>\n<p>Create an HTML file named &#8216;<strong><em>index.html<\/em><\/strong>&#8216; and put these codes given here below.<\/p>\n<pre class=\"lang:xhtml decode:true\" title=\"index.html\">&lt;!DOCTYPE html&gt;\r\n&lt;!-- code by webdevtrick ( https:\/\/webdevtrick.com ) --&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n  &lt;meta charset=\"UTF-8\"&gt;\r\n  &lt;title&gt;Road Trip&lt;\/title&gt;\r\n  &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"&gt;\r\n\t&lt;link href=\"https:\/\/fonts.googleapis.com\/css?family=Righteous\" rel=\"stylesheet\"&gt;\r\n      &lt;link rel=\"stylesheet\" href=\"style.css\"&gt;\r\n\r\n&lt;\/head&gt;\r\n\r\n&lt;body&gt;\r\n\r\n  &lt;div class=\"maindiv\"&gt;\r\n  &lt;h1 class=\"text\"&gt;\r\n   WEB DEV TRICK\r\n  &lt;\/h1&gt;\r\n&lt;\/div&gt;\r\n  \r\n&lt;\/body&gt;\r\n\r\n&lt;\/html&gt;\r\n<\/pre>\n<p><span style=\"font-size: 14pt;\">style.css<\/span><\/p>\n<p>Now create a CSS file named &#8216;<strong><em>style.css<\/em><\/strong>&#8216; and put these codes.<\/p>\n<pre class=\"lang:css decode:true \" title=\"style.css\">\/* code by webdevtrick ( https:\/\/webdevtrick.com ) *\/\r\nhtml, body {\r\n  background: #BBBBBB;\r\n  height: 100%;\r\n  width: 100%;\r\n}\r\n\r\n.maindiv {\r\n  display: flex;\r\n  align-items: center;\r\n  justify-content: center;\r\n  height: 100%;\r\n}\r\n\r\n.text {\r\n  padding: 10px;\r\n  background: url(\"https:\/\/media.giphy.com\/media\/4H3Ii5eLChYul9p7NL\/giphy.gif\");\r\n  background-size: cover;\r\n  background-position: center;\r\n  -webkit-background-clip: text;\r\n  color: #00000047;\r\n  text-transform: uppercase;\r\n  font-size: 8rem;\r\n  font-weight: 900;\r\n\tfont-family: 'Righteous', cursive;\r\n  letter-spacing: 1px;\r\n  -webkit-user-select: none;\r\n     -moz-user-select: none;\r\n      -ms-user-select: none;\r\n          user-select: none;\r\n  text-align: center;\r\n}\r\n<\/pre>\n<p>That&#8217;s It. Now you have successfully created Animated CSS Text Mask With GIF Program. &amp; learned how to Masking In HTML CSS. If you have any doubt or question comment down below.<\/p>\n<p><span style=\"font-family: impact, sans-serif;\">Thanks For Visting, Keep Visiting.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Can we create a masking effect with HTML and CSS? Yes, see this: Animated CSS Text Mask With GIF, Masking In HTML CSS. If you are a graphic or web designer then you probably know what is masking. Generally, we create masking in software, but we can also create a masking effect in coding with [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1288,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[43,42,22,41],"tags":[185,74,187,155,68,154,67],"class_list":["post-1287","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-css","category-html","category-web-design","category-web-development","tag-animated-text","tag-css-animation","tag-css-masking","tag-html-and-css","tag-html-source-code","tag-pure-css","tag-source-code"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Animated CSS Text Mask With GIF | Masking In HTML CSS<\/title>\n<meta name=\"description\" content=\"Create masking effect in HTML CSS. See this Animated CSS text mask with GIF. You can create a video text masking effect with this. Get Source Code Now.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webdevtrick.com\/css-text-mask\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Animated CSS Text Mask With GIF | Masking In HTML CSS\" \/>\n<meta property=\"og:description\" content=\"Create masking effect in HTML CSS. See this Animated CSS text mask with GIF. You can create a video text masking effect with this. Get Source Code Now.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webdevtrick.com\/css-text-mask\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Dev Trick\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webdevtrick\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-05-14T17:32:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-05-18T04:04:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-mask-with-gif.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"629\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"shaan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"shaan\" \/>\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:\/\/webdevtrick.com\/css-text-mask\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webdevtrick.com\/css-text-mask\/\"},\"author\":{\"name\":\"shaan\",\"@id\":\"https:\/\/webdevtrick.com\/#\/schema\/person\/c79bae83976f92fe305c22342b2a0be3\"},\"headline\":\"Animated CSS Text Mask With GIF | Masking In HTML CSS\",\"datePublished\":\"2019-05-14T17:32:05+00:00\",\"dateModified\":\"2019-05-18T04:04:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webdevtrick.com\/css-text-mask\/\"},\"wordCount\":462,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/webdevtrick.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/webdevtrick.com\/css-text-mask\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-mask-with-gif.jpg\",\"keywords\":[\"animated text\",\"css animation\",\"css masking\",\"html and css\",\"html source code\",\"pure css\",\"source code\"],\"articleSection\":[\"CSS\",\"HTML\",\"Web Design\",\"Web Development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webdevtrick.com\/css-text-mask\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webdevtrick.com\/css-text-mask\/\",\"url\":\"https:\/\/webdevtrick.com\/css-text-mask\/\",\"name\":\"Animated CSS Text Mask With GIF | Masking In HTML CSS\",\"isPartOf\":{\"@id\":\"https:\/\/webdevtrick.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webdevtrick.com\/css-text-mask\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webdevtrick.com\/css-text-mask\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-mask-with-gif.jpg\",\"datePublished\":\"2019-05-14T17:32:05+00:00\",\"dateModified\":\"2019-05-18T04:04:58+00:00\",\"description\":\"Create masking effect in HTML CSS. See this Animated CSS text mask with GIF. You can create a video text masking effect with this. Get Source Code Now.\",\"breadcrumb\":{\"@id\":\"https:\/\/webdevtrick.com\/css-text-mask\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webdevtrick.com\/css-text-mask\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webdevtrick.com\/css-text-mask\/#primaryimage\",\"url\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-mask-with-gif.jpg\",\"contentUrl\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-mask-with-gif.jpg\",\"width\":1200,\"height\":629,\"caption\":\"css text mask with gif\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webdevtrick.com\/css-text-mask\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webdevtrick.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Animated CSS Text Mask With GIF | Masking In HTML CSS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webdevtrick.com\/#website\",\"url\":\"https:\/\/webdevtrick.com\/\",\"name\":\"Web Dev Trick\",\"description\":\"HTML5, CSS3, JS, PHP Source Code &amp; Tutorial\",\"publisher\":{\"@id\":\"https:\/\/webdevtrick.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webdevtrick.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webdevtrick.com\/#organization\",\"name\":\"Web Dev Trick\",\"url\":\"https:\/\/webdevtrick.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webdevtrick.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/logo-fb-1.png\",\"contentUrl\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/logo-fb-1.png\",\"width\":512,\"height\":512,\"caption\":\"Web Dev Trick\"},\"image\":{\"@id\":\"https:\/\/webdevtrick.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webdevtrick\/\",\"https:\/\/pinterest.com\/webdevtrick\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webdevtrick.com\/#\/schema\/person\/c79bae83976f92fe305c22342b2a0be3\",\"name\":\"shaan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webdevtrick.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/60aa6ee93605bda7bc598d11dd748709a69bdb55a080124cc382114d8d7e7665?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/60aa6ee93605bda7bc598d11dd748709a69bdb55a080124cc382114d8d7e7665?s=96&d=mm&r=g\",\"caption\":\"shaan\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Animated CSS Text Mask With GIF | Masking In HTML CSS","description":"Create masking effect in HTML CSS. See this Animated CSS text mask with GIF. You can create a video text masking effect with this. Get Source Code Now.","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:\/\/webdevtrick.com\/css-text-mask\/","og_locale":"en_US","og_type":"article","og_title":"Animated CSS Text Mask With GIF | Masking In HTML CSS","og_description":"Create masking effect in HTML CSS. See this Animated CSS text mask with GIF. You can create a video text masking effect with this. Get Source Code Now.","og_url":"https:\/\/webdevtrick.com\/css-text-mask\/","og_site_name":"Web Dev Trick","article_publisher":"https:\/\/www.facebook.com\/webdevtrick\/","article_published_time":"2019-05-14T17:32:05+00:00","article_modified_time":"2019-05-18T04:04:58+00:00","og_image":[{"width":1200,"height":629,"url":"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-mask-with-gif.jpg","type":"image\/jpeg"}],"author":"shaan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"shaan","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webdevtrick.com\/css-text-mask\/#article","isPartOf":{"@id":"https:\/\/webdevtrick.com\/css-text-mask\/"},"author":{"name":"shaan","@id":"https:\/\/webdevtrick.com\/#\/schema\/person\/c79bae83976f92fe305c22342b2a0be3"},"headline":"Animated CSS Text Mask With GIF | Masking In HTML CSS","datePublished":"2019-05-14T17:32:05+00:00","dateModified":"2019-05-18T04:04:58+00:00","mainEntityOfPage":{"@id":"https:\/\/webdevtrick.com\/css-text-mask\/"},"wordCount":462,"commentCount":1,"publisher":{"@id":"https:\/\/webdevtrick.com\/#organization"},"image":{"@id":"https:\/\/webdevtrick.com\/css-text-mask\/#primaryimage"},"thumbnailUrl":"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-mask-with-gif.jpg","keywords":["animated text","css animation","css masking","html and css","html source code","pure css","source code"],"articleSection":["CSS","HTML","Web Design","Web Development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webdevtrick.com\/css-text-mask\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webdevtrick.com\/css-text-mask\/","url":"https:\/\/webdevtrick.com\/css-text-mask\/","name":"Animated CSS Text Mask With GIF | Masking In HTML CSS","isPartOf":{"@id":"https:\/\/webdevtrick.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webdevtrick.com\/css-text-mask\/#primaryimage"},"image":{"@id":"https:\/\/webdevtrick.com\/css-text-mask\/#primaryimage"},"thumbnailUrl":"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-mask-with-gif.jpg","datePublished":"2019-05-14T17:32:05+00:00","dateModified":"2019-05-18T04:04:58+00:00","description":"Create masking effect in HTML CSS. See this Animated CSS text mask with GIF. You can create a video text masking effect with this. Get Source Code Now.","breadcrumb":{"@id":"https:\/\/webdevtrick.com\/css-text-mask\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webdevtrick.com\/css-text-mask\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webdevtrick.com\/css-text-mask\/#primaryimage","url":"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-mask-with-gif.jpg","contentUrl":"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-mask-with-gif.jpg","width":1200,"height":629,"caption":"css text mask with gif"},{"@type":"BreadcrumbList","@id":"https:\/\/webdevtrick.com\/css-text-mask\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webdevtrick.com\/"},{"@type":"ListItem","position":2,"name":"Animated CSS Text Mask With GIF | Masking In HTML CSS"}]},{"@type":"WebSite","@id":"https:\/\/webdevtrick.com\/#website","url":"https:\/\/webdevtrick.com\/","name":"Web Dev Trick","description":"HTML5, CSS3, JS, PHP Source Code &amp; Tutorial","publisher":{"@id":"https:\/\/webdevtrick.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webdevtrick.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webdevtrick.com\/#organization","name":"Web Dev Trick","url":"https:\/\/webdevtrick.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webdevtrick.com\/#\/schema\/logo\/image\/","url":"https:\/\/webdevtrick.com\/wp-content\/uploads\/logo-fb-1.png","contentUrl":"https:\/\/webdevtrick.com\/wp-content\/uploads\/logo-fb-1.png","width":512,"height":512,"caption":"Web Dev Trick"},"image":{"@id":"https:\/\/webdevtrick.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webdevtrick\/","https:\/\/pinterest.com\/webdevtrick\/"]},{"@type":"Person","@id":"https:\/\/webdevtrick.com\/#\/schema\/person\/c79bae83976f92fe305c22342b2a0be3","name":"shaan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webdevtrick.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/60aa6ee93605bda7bc598d11dd748709a69bdb55a080124cc382114d8d7e7665?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/60aa6ee93605bda7bc598d11dd748709a69bdb55a080124cc382114d8d7e7665?s=96&d=mm&r=g","caption":"shaan"}}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/posts\/1287","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/comments?post=1287"}],"version-history":[{"count":0,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/posts\/1287\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/media\/1288"}],"wp:attachment":[{"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/media?parent=1287"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/categories?post=1287"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/tags?post=1287"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}