{"id":2543,"date":"2019-08-14T16:45:06","date_gmt":"2019-08-14T16:45:06","guid":{"rendered":"https:\/\/webdevtrick.com\/?p=2543"},"modified":"2019-08-14T16:45:06","modified_gmt":"2019-08-14T16:45:06","slug":"css-gradient-background","status":"publish","type":"post","link":"https:\/\/webdevtrick.com\/css-gradient-background\/","title":{"rendered":"CSS Gradient Background Animation | Pure CSS Moving Gradient"},"content":{"rendered":"<p><strong>How we can create movie gradient for the background using pure CSS? Solution: CSS Gradient Background Animation. In other words, Pure CSS moving gradient.<\/strong><\/p>\n<p>Previously I have shared a <span><a href=\"https:\/\/webdevtrick.com\/javascript-random-gradient-generator\/\" target=\"_blank\" rel=\"noopener noreferrer\"> random gradient generator<\/a><\/span>, but this is a simple <strong>moving gradient <\/strong>for background or on any element. Basically, a gradient is a mix of more than one color, that we can easily create using CSS for websites. I have shared some posts on <span><a href=\"https:\/\/webdevtrick.com\/tag\/gradient\/\" target=\"_blank\" rel=\"noopener noreferrer\">gradient topic<\/a><\/span> first, check out those.<\/p>\n<p>Today you will learn to create a<strong> moving gradient background<\/strong> for your website. This is a basic and easy concept, one of our visitors asks me for creating this that&#8217;s why I am sharing this. After seeing this post, you will able to understand how <strong>CSS gradients<\/strong> work and how to create. Codes of this design are very easy, even a beginner understand quickly.<\/p>\n<p>So, Today I am sharing <strong>CSS Gradient Background Animation<\/strong>. This is a normal linear gradient on the body with <strong>moving animation<\/strong>, that&#8217;s why I am calling it animated <strong>background gradient<\/strong>. There I have used some simple CSS properties like<strong> linear-gradient, background-size, animation<\/strong>, etc.<\/p>\n<p>If you are thinking now how this moving background actually is, then see the<strong> preview<\/strong> given below.<\/p>\n<h3>Preview Of Moving Gradient<\/h3>\n<p>See this video preview to getting an idea of how this design<strong> looks like<\/strong>.<\/p>\n<div style=\"width: 640px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-2543-1\" width=\"640\" height=\"340\" loop autoplay preload=\"metadata\" controls=\"controls\"><source type=\"video\/mp4\" src=\"https:\/\/webdevtrick.com\/wp-content\/uploads\/gradient-background.mp4?_=1\" \/><a href=\"https:\/\/webdevtrick.com\/wp-content\/uploads\/gradient-background.mp4\">https:\/\/webdevtrick.com\/wp-content\/uploads\/gradient-background.mp4<\/a><\/video><\/div>\n<a class=\"maxbutton-2 maxbutton maxbutton-demo\" target=\"_blank\" rel=\"noopener\" href=\"https:\/\/webdevtrick.com\/demos\/css-gradient-background\/\"><span class='mb-text'>Live Demo<\/span><\/a>\n<p>Now you can see this visually, you also can see it live by pressing the button given above. If you like this, then get the <strong>source code<\/strong> of its.<\/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\/css-border-transition-effects\/\" target=\"_blank\" rel=\"noopener noreferrer\">CSS Border Transitions<\/a><\/li>\n<li><a href=\"https:\/\/webdevtrick.com\/css-clip-path-animation\/\" target=\"_blank\" rel=\"noopener noreferrer\">Clip Path Animation Cards<\/a><\/li>\n<li><a href=\"https:\/\/webdevtrick.com\/css-dropdown-menu\/\" target=\"_blank\" rel=\"noopener noreferrer\">Pure HTML CSS Dropdown Menu<\/a><\/li>\n<li><a href=\"https:\/\/webdevtrick.com\/css-grid-menu\/\" target=\"_blank\" rel=\"noopener noreferrer\">Grid Menu Layout With Flex<\/a><\/li>\n<p><\/span>\n<\/ul>\n<h2>CSS Gradient Background Animation Source Code<\/h2>\n<p>Before <strong>sharing source code<\/strong>, let&#8217;s talk about it. I have created just one div for text otherwise, the gradient is on the body element. I have used a google font (<a href=\"https:\/\/fonts.google.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">get<\/a>) for styling the headings on the design. In HTML file I have done these works only like put first heading, second heading, and link the font.<\/p>\n<p>Now in the<strong> CSS<\/strong> file, I have placed gradient on the body tag. I have placed a linear gradient with four <span><a href=\"https:\/\/webdevtrick.com\/random-color-generator-javascript\/\" target=\"_blank\" rel=\"noopener noreferrer\">colors<\/a><\/span> and -45 degrees angle, now the whole command line looks like this: <span class=\"lang:css decode:true crayon-inline \">background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab );<\/span> . After that, I have created an <a href=\"https:\/\/webdevtrick.com\/tag\/css-animation\" target=\"_blank\" rel=\"noopener noreferrer\">animation<\/a> using CSS <span class=\"lang:default decode:true crayon-inline \">@keyframe<\/span>\u00a0 and put 3 stage animation at 0%, 50%, and 100%.<\/p>\n<p>Left other basic things you will understand easily after <strong>getting the codes<\/strong>, I can&#8217;t explain all in writing. For creating this you have to create only 2 files, one for <strong>HTML<\/strong> and one for <strong>CSS<\/strong>. Follow the steps to creating 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 lang=\"en\" &gt;\r\n&lt;head&gt;\r\n  &lt;meta charset=\"UTF-8\"&gt;\r\n  &lt;title&gt;CSS Gradient Background | Webdevtrick.com&lt;\/title&gt;\r\n  &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"&gt;\r\n  &lt;link rel='stylesheet' href='https:\/\/fonts.googleapis.com\/css?family=Exo&amp;amp;display=swap'&gt;\r\n&lt;link rel=\"stylesheet\" href=\"style.css\"&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\r\n  &lt;div class=\"container\"&gt;\r\n  &lt;h1&gt;CSS Animated Gradient Background&lt;\/h1&gt;\r\n  &lt;h2&gt;Get More @ &lt;a href=\"https:\/\/webdevtrick.com\/\"&gt;Webdevtrick&lt;\/a&gt;&lt;\/h2&gt;\r\n&lt;\/div&gt;\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/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 given here.<\/p>\n<pre class=\"lang:css decode:true \" title=\"style.css\">\/** Code By Webdevtrick ( https:\/\/webdevtrick.com ) **\/\r\nbody {\r\n\tmargin: 0;\r\n\twidth: 100%;\r\n\theight: 100vh;\r\n\tfont-family: \"Exo\", sans-serif;\r\n\tcolor: #fff;\r\n\tbackground: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab );\r\n\tbackground-size: 400% 400%;\r\n\t-webkit-animation: gradientBG 10s ease infinite;\r\n\t        animation: gradientBG 10s ease infinite;\r\n}\r\n.container {\r\n\twidth: 100%;\r\n\tposition: absolute;\r\n\ttop: 35%;\r\n\ttext-align: center;\r\n}\r\nh1 {\r\n\tfont-weight: 900;\r\n}\r\na {\r\n\ttext-decoration: none;\r\n\tcolor: #212121;\r\n}\r\n@-webkit-keyframes gradientBG {\r\n\t0% {\r\n\t\tbackground-position: 0% 50%;\r\n\t}\r\n\t50% {\r\n\t\tbackground-position: 100% 50%;\r\n\t}\r\n\t100% {\r\n\t\tbackground-position: 0% 50%;\r\n\t}\r\n}\r\n@keyframes gradientBG {\r\n\t0% {\r\n\t\tbackground-position: 0% 50%;\r\n\t}\r\n\t50% {\r\n\t\tbackground-position: 100% 50%;\r\n\t}\r\n\t100% {\r\n\t\tbackground-position: 0% 50%;\r\n\t}\r\n}\r\n\r\n<\/pre>\n<p>That&#8217;s It. Now you have successfully created CSS <strong>Gradient Background<\/strong> Animation, Pure CSS <strong>Moving Gradient<\/strong>. If you have any doubt or question comment down below.<\/p>\n<p><span style=\"font-family: impact, sans-serif;\">Thanks For Visiting, Keep Visiting.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>How we can create movie gradient for the background using pure CSS? Solution: CSS Gradient Background Animation. In other words, Pure CSS moving gradient. Previously I have shared a random gradient generator, but this is a simple moving gradient for background or on any element. Basically, a gradient is a mix of more than one [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2544,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[43,42],"tags":[74,232,299,155,68,154,67],"class_list":["post-2543","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-css","category-html","tag-css-animation","tag-gradient","tag-gradient-direction-change","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>CSS Gradient Background Animation | Pure CSS Moving Gradient<\/title>\n<meta name=\"description\" content=\"Want to create a gradient background for website? Check out this CSS Gradient Background Animation, Pure CSS Moving Gradient. 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-gradient-background\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CSS Gradient Background Animation | Pure CSS Moving Gradient\" \/>\n<meta property=\"og:description\" content=\"Want to create a gradient background for website? Check out this CSS Gradient Background Animation, Pure CSS Moving Gradient. Get source code now.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webdevtrick.com\/css-gradient-background\/\" \/>\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-08-14T16:45:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-background-gradient-animation.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webdevtrick.com\/css-gradient-background\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webdevtrick.com\/css-gradient-background\/\"},\"author\":{\"name\":\"shaan\",\"@id\":\"https:\/\/webdevtrick.com\/#\/schema\/person\/c79bae83976f92fe305c22342b2a0be3\"},\"headline\":\"CSS Gradient Background Animation | Pure CSS Moving Gradient\",\"datePublished\":\"2019-08-14T16:45:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webdevtrick.com\/css-gradient-background\/\"},\"wordCount\":539,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/webdevtrick.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/webdevtrick.com\/css-gradient-background\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-background-gradient-animation.jpg\",\"keywords\":[\"css animation\",\"gradient\",\"gradient direction change\",\"html and css\",\"html source code\",\"pure css\",\"source code\"],\"articleSection\":[\"CSS\",\"HTML\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webdevtrick.com\/css-gradient-background\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webdevtrick.com\/css-gradient-background\/\",\"url\":\"https:\/\/webdevtrick.com\/css-gradient-background\/\",\"name\":\"CSS Gradient Background Animation | Pure CSS Moving Gradient\",\"isPartOf\":{\"@id\":\"https:\/\/webdevtrick.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webdevtrick.com\/css-gradient-background\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webdevtrick.com\/css-gradient-background\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-background-gradient-animation.jpg\",\"datePublished\":\"2019-08-14T16:45:06+00:00\",\"description\":\"Want to create a gradient background for website? Check out this CSS Gradient Background Animation, Pure CSS Moving Gradient. Get source code now.\",\"breadcrumb\":{\"@id\":\"https:\/\/webdevtrick.com\/css-gradient-background\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webdevtrick.com\/css-gradient-background\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webdevtrick.com\/css-gradient-background\/#primaryimage\",\"url\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-background-gradient-animation.jpg\",\"contentUrl\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-background-gradient-animation.jpg\",\"width\":1200,\"height\":630,\"caption\":\"css background gradient animation\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webdevtrick.com\/css-gradient-background\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webdevtrick.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"CSS Gradient Background Animation | Pure CSS Moving Gradient\"}]},{\"@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":"CSS Gradient Background Animation | Pure CSS Moving Gradient","description":"Want to create a gradient background for website? Check out this CSS Gradient Background Animation, Pure CSS Moving Gradient. 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-gradient-background\/","og_locale":"en_US","og_type":"article","og_title":"CSS Gradient Background Animation | Pure CSS Moving Gradient","og_description":"Want to create a gradient background for website? Check out this CSS Gradient Background Animation, Pure CSS Moving Gradient. Get source code now.","og_url":"https:\/\/webdevtrick.com\/css-gradient-background\/","og_site_name":"Web Dev Trick","article_publisher":"https:\/\/www.facebook.com\/webdevtrick\/","article_published_time":"2019-08-14T16:45:06+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-background-gradient-animation.jpg","type":"image\/jpeg"}],"author":"shaan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"shaan","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webdevtrick.com\/css-gradient-background\/#article","isPartOf":{"@id":"https:\/\/webdevtrick.com\/css-gradient-background\/"},"author":{"name":"shaan","@id":"https:\/\/webdevtrick.com\/#\/schema\/person\/c79bae83976f92fe305c22342b2a0be3"},"headline":"CSS Gradient Background Animation | Pure CSS Moving Gradient","datePublished":"2019-08-14T16:45:06+00:00","mainEntityOfPage":{"@id":"https:\/\/webdevtrick.com\/css-gradient-background\/"},"wordCount":539,"commentCount":1,"publisher":{"@id":"https:\/\/webdevtrick.com\/#organization"},"image":{"@id":"https:\/\/webdevtrick.com\/css-gradient-background\/#primaryimage"},"thumbnailUrl":"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-background-gradient-animation.jpg","keywords":["css animation","gradient","gradient direction change","html and css","html source code","pure css","source code"],"articleSection":["CSS","HTML"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webdevtrick.com\/css-gradient-background\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webdevtrick.com\/css-gradient-background\/","url":"https:\/\/webdevtrick.com\/css-gradient-background\/","name":"CSS Gradient Background Animation | Pure CSS Moving Gradient","isPartOf":{"@id":"https:\/\/webdevtrick.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webdevtrick.com\/css-gradient-background\/#primaryimage"},"image":{"@id":"https:\/\/webdevtrick.com\/css-gradient-background\/#primaryimage"},"thumbnailUrl":"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-background-gradient-animation.jpg","datePublished":"2019-08-14T16:45:06+00:00","description":"Want to create a gradient background for website? Check out this CSS Gradient Background Animation, Pure CSS Moving Gradient. Get source code now.","breadcrumb":{"@id":"https:\/\/webdevtrick.com\/css-gradient-background\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webdevtrick.com\/css-gradient-background\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webdevtrick.com\/css-gradient-background\/#primaryimage","url":"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-background-gradient-animation.jpg","contentUrl":"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-background-gradient-animation.jpg","width":1200,"height":630,"caption":"css background gradient animation"},{"@type":"BreadcrumbList","@id":"https:\/\/webdevtrick.com\/css-gradient-background\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webdevtrick.com\/"},{"@type":"ListItem","position":2,"name":"CSS Gradient Background Animation | Pure CSS Moving Gradient"}]},{"@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\/2543","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=2543"}],"version-history":[{"count":16,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/posts\/2543\/revisions"}],"predecessor-version":[{"id":2561,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/posts\/2543\/revisions\/2561"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/media\/2544"}],"wp:attachment":[{"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/media?parent=2543"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/categories?post=2543"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/tags?post=2543"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}