{"id":3519,"date":"2019-12-18T09:51:27","date_gmt":"2019-12-18T04:21:27","guid":{"rendered":"https:\/\/www.sanjaywebdesigner.com\/articles\/?p=3519"},"modified":"2019-12-18T09:51:27","modified_gmt":"2019-12-18T04:21:27","slug":"pure-html-css-image-hover-effect","status":"publish","type":"post","link":"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/","title":{"rendered":"PURE HTML CSS Image Hover Effect"},"content":{"rendered":"<div class=\"4b5c905834746893f548144bd2becc18\" data-index=\"1\" style=\"float: none; margin:10px 0 10px 0; text-align:center;\">\n<script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script>\r\n<!-- blog last -->\r\n<ins class=\"adsbygoogle\"\r\n     style=\"display:inline-block;width:336px;height:280px\"\r\n     data-ad-client=\"ca-pub-8831529092902674\"\r\n     data-ad-slot=\"8814291746\"><\/ins>\r\n<script>\r\n(adsbygoogle = window.adsbygoogle || []).push({});\r\n<\/script>\n<\/div>\n<p>PURE HTML CSS Image Hover Effect<\/p>\n<p><a href=\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/pure-html-css-image-hover-effect.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3521\" src=\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/pure-html-css-image-hover-effect.jpg\" alt=\"pure-html-css-image-hover-effect\" width=\"307\" height=\"300\" srcset=\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/pure-html-css-image-hover-effect.jpg 307w, https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/pure-html-css-image-hover-effect-300x293.jpg 300w\" sizes=\"auto, (max-width: 307px) 100vw, 307px\" \/><\/a><\/p>\n<div style=\"width: 640px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-3519-1\" width=\"640\" height=\"360\" preload=\"metadata\" controls=\"controls\"><source type=\"video\/mp4\" src=\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/animated-hover-effect.mp4?_=1\" \/><a href=\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/animated-hover-effect.mp4\">https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/animated-hover-effect.mp4<\/a><\/video><\/div>\n<p>HTML Code<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">&lt;!doctype html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=\"utf-8\"&gt;\r\n&lt;title&gt;Untitled Document&lt;\/title&gt;\r\n  \r\n&lt;\/head&gt;\r\n\r\n&lt;body&gt;\r\n  &lt;div class=\"s1\"&gt;\r\n  &lt;div class=\"a1\"&gt;&lt;\/div&gt;\r\n  &lt;div class=\"a2\"&gt;&lt;\/div&gt;\r\n    &lt;div class=\"a3\"&gt;&lt;\/div&gt;\r\n    &lt;div class=\"a4\"&gt;&lt;\/div&gt;\r\n  &lt;\/div&gt;\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p>CSS Code<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">&lt;style&gt;\r\n    @keyframes dd{\r\n      from{\r\n        width:100px; height:100px;\r\n        z-index:10;\r\n      }\r\n      to{\r\n        width:200px; height:200px;\r\n        z-index:10;\r\n      }\r\n    }\r\n      @keyframes dd1{\r\n      from{\r\n        width:100px; height:100px;top:0;\r\n      left:100px;\r\n        z-index:10;\r\n      }\r\n      to{\r\n        width:200px; height:200px;\r\n        z-index:10;left:0;top:0;\r\n      }\r\n    }\r\n      @keyframes dd2{\r\n      from{\r\n        width:100px; height:100px;top:100px;\r\n      left:0;\r\n        z-index:10;\r\n      }\r\n      to{\r\n        width:200px; height:200px;left:0;top:0;\r\n        z-index:10;\r\n      }\r\n    }\r\n      @keyframes dd3{\r\n      from{\r\n        width:100px; height:100px;top:100px;\r\n      \r\n      left:100px;\r\n        z-index:10;\r\n      }\r\n      to{\r\n        width:200px; height:200px;\r\n        z-index:10;left:0;top:0;\r\n      }\r\n    }\r\n    .s1{\r\n      width:200px;\r\n      height:200px;\r\n      position:relative;\r\n    }\r\n    .a1{\r\n      width:100px;\r\n      height:100px;\r\n      position:absolute;\r\n      background-image:url(\"image1.jpg\");\r\n      top:0;\r\n      left:0;\r\n      background-size:100%;\r\n    }\r\n    .a1:hover{\r\n      width:200px;\r\n      height:200px;\r\n      animation:dd 1s;\r\n    }\r\n    .a2:hover{\r\n      width:200px;\r\n      height:200px;\r\n      animation:dd1 1s;\r\n      left:0;\r\n      top:0;\r\n    }\r\n    .a3:hover{\r\n      width:200px;\r\n      height:200px;\r\n      animation:dd2 1s;\r\n      left:0;\r\n      top:0;\r\n    }\r\n    .a4:hover{\r\n      width:200px;\r\n      height:200px;\r\n      animation:dd3 1s;\r\n      left:0;\r\n      top:0;\r\n    }\r\n    .a2{\r\n      width:100px;\r\n      height:100px;\r\n      position:absolute;\r\n      background-image:url(\"image2.jpg\");\r\n      top:0;\r\n      left:100px;\r\n      background-size:100%;\r\n    }\r\n    .a3{\r\n      width:100px;\r\n      height:100px;\r\n      position:absolute;\r\n      background-image:url(\"image1.jpg\");\r\n      top:100px;\r\n      left:0;\r\n      background-size:100%;\r\n    }\r\n    .a4{\r\n      width:100px;\r\n      height:100px;\r\n      position:absolute;\r\n      background-image:url(\"image4.jpg\");\r\n      top:100px;\r\n      background-size:100%;\r\n      left:100px;\r\n    }<\/pre>\n<p>&nbsp;<\/p>\n\n<div style=\"font-size: 0px; height: 0px; line-height: 0px; margin: 0; padding: 0; clear: both;\"><\/div>","protected":false},"excerpt":{"rendered":"<p>PURE HTML CSS Image Hover Effect HTML Code &lt;!doctype html&gt; &lt;html&gt; &lt;head&gt; &lt;meta charset=&#8221;utf-8&#8243;&gt; &lt;title&gt;Untitled Document&lt;\/title&gt; &lt;\/head&gt; &lt;body&gt; &lt;div class=&#8221;s1&#8243;&gt; &lt;div class=&#8221;a1&#8243;&gt;&lt;\/div&gt; &lt;div class=&#8221;a2&#8243;&gt;&lt;\/div&gt; &lt;div class=&#8221;a3&#8243;&gt;&lt;\/div&gt; &lt;div class=&#8221;a4&#8243;&gt;&lt;\/div&gt; &lt;\/div&gt; &lt;\/body&gt; &lt;\/html&gt; CSS Code &lt;style&gt; @keyframes dd{ from{ width:100px; height:100px; z-index:10; } to{ width:200px; height:200px; z-index:10; } } @keyframes dd1{ from{ width:100px; height:100px;top:0; left:100px; z-index:10; } [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":3521,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[22],"tags":[1309,1310,1311],"class_list":["post-3519","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-html5-css3-courses-in-delhi","tag-pure-html-css-image-hover-effect","tag-pure-html-css-image-hover-effect-in-delhi","tag-pure-html-css-image-hover-effect-in-india"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pure HTML CSS Image Hover Effect<\/title>\n<meta name=\"description\" content=\"Pure HTML CSS Image Hover Effect in Delhi and India\" \/>\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.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pure HTML CSS Image Hover Effect\" \/>\n<meta property=\"og:description\" content=\"Pure HTML CSS Image Hover Effect\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/\" \/>\n<meta property=\"og:site_name\" content=\"Sanjay Web Designer\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/sanjaywebdesigner\" \/>\n<meta property=\"article:published_time\" content=\"2019-12-18T04:21:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/pure-html-css-image-hover-effect.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"307\" \/>\n\t<meta property=\"og:image:height\" content=\"300\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Sanjay Jain\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Pure HTML CSS Image Hover Effect\" \/>\n<meta name=\"twitter:description\" content=\"Pure HTML CSS Image Hover Effect\" \/>\n<meta name=\"twitter:creator\" content=\"@sanjaywebdesign\" \/>\n<meta name=\"twitter:site\" content=\"@sanjaywebdesign\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sanjay Jain\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/\"},\"author\":{\"name\":\"Sanjay Jain\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/person\/7013e58aaefa0607a58fdb91888de833\"},\"headline\":\"PURE HTML CSS Image Hover Effect\",\"datePublished\":\"2019-12-18T04:21:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/\"},\"wordCount\":31,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/pure-html-css-image-hover-effect.jpg\",\"keywords\":[\"PURE HTML CSS Image Hover Effect\",\"PURE HTML CSS Image Hover Effect in Delhi\",\"PURE HTML CSS Image Hover Effect in India\"],\"articleSection\":[\"HTML5 &amp; CSS3\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/\",\"url\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/\",\"name\":\"Pure HTML CSS Image Hover Effect\",\"isPartOf\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/pure-html-css-image-hover-effect.jpg\",\"datePublished\":\"2019-12-18T04:21:27+00:00\",\"description\":\"Pure HTML CSS Image Hover Effect in Delhi and India\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/#primaryimage\",\"url\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/pure-html-css-image-hover-effect.jpg\",\"contentUrl\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/pure-html-css-image-hover-effect.jpg\",\"width\":307,\"height\":300},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#website\",\"url\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/\",\"name\":\"Sanjay Web Designer\",\"description\":\"Learn Web Designing &amp; Graphic Designing in Depth\",\"publisher\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#organization\",\"name\":\"Sanjay Web Designer\",\"url\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2021\/08\/cropped-footer-logo-1.png\",\"contentUrl\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2021\/08\/cropped-footer-logo-1.png\",\"width\":240,\"height\":72,\"caption\":\"Sanjay Web Designer\"},\"image\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/sanjaywebdesigner\",\"https:\/\/x.com\/sanjaywebdesign\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/person\/7013e58aaefa0607a58fdb91888de833\",\"name\":\"Sanjay Jain\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/661807705d23debee3ca86318320b24f983b9ef8a34301cf6e40545f1d6d25db?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/661807705d23debee3ca86318320b24f983b9ef8a34301cf6e40545f1d6d25db?s=96&d=mm&r=g\",\"caption\":\"Sanjay Jain\"},\"sameAs\":[\"http:\/\/www.sanjaywebdesigner.com\/\"],\"url\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/author\/sanjay\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pure HTML CSS Image Hover Effect","description":"Pure HTML CSS Image Hover Effect in Delhi and India","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.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/","og_locale":"en_US","og_type":"article","og_title":"Pure HTML CSS Image Hover Effect","og_description":"Pure HTML CSS Image Hover Effect","og_url":"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/","og_site_name":"Sanjay Web Designer","article_publisher":"https:\/\/www.facebook.com\/sanjaywebdesigner","article_published_time":"2019-12-18T04:21:27+00:00","og_image":[{"width":307,"height":300,"url":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/pure-html-css-image-hover-effect.jpg","type":"image\/jpeg"}],"author":"Sanjay Jain","twitter_card":"summary_large_image","twitter_title":"Pure HTML CSS Image Hover Effect","twitter_description":"Pure HTML CSS Image Hover Effect","twitter_creator":"@sanjaywebdesign","twitter_site":"@sanjaywebdesign","twitter_misc":{"Written by":"Sanjay Jain","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/#article","isPartOf":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/"},"author":{"name":"Sanjay Jain","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/person\/7013e58aaefa0607a58fdb91888de833"},"headline":"PURE HTML CSS Image Hover Effect","datePublished":"2019-12-18T04:21:27+00:00","mainEntityOfPage":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/"},"wordCount":31,"commentCount":0,"publisher":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#organization"},"image":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/pure-html-css-image-hover-effect.jpg","keywords":["PURE HTML CSS Image Hover Effect","PURE HTML CSS Image Hover Effect in Delhi","PURE HTML CSS Image Hover Effect in India"],"articleSection":["HTML5 &amp; CSS3"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/","url":"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/","name":"Pure HTML CSS Image Hover Effect","isPartOf":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/#primaryimage"},"image":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/pure-html-css-image-hover-effect.jpg","datePublished":"2019-12-18T04:21:27+00:00","description":"Pure HTML CSS Image Hover Effect in Delhi and India","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/pure-html-css-image-hover-effect\/#primaryimage","url":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/pure-html-css-image-hover-effect.jpg","contentUrl":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/pure-html-css-image-hover-effect.jpg","width":307,"height":300},{"@type":"WebSite","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#website","url":"https:\/\/www.sanjaywebdesigner.com\/articles\/","name":"Sanjay Web Designer","description":"Learn Web Designing &amp; Graphic Designing in Depth","publisher":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sanjaywebdesigner.com\/articles\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#organization","name":"Sanjay Web Designer","url":"https:\/\/www.sanjaywebdesigner.com\/articles\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/logo\/image\/","url":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2021\/08\/cropped-footer-logo-1.png","contentUrl":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2021\/08\/cropped-footer-logo-1.png","width":240,"height":72,"caption":"Sanjay Web Designer"},"image":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/sanjaywebdesigner","https:\/\/x.com\/sanjaywebdesign"]},{"@type":"Person","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/person\/7013e58aaefa0607a58fdb91888de833","name":"Sanjay Jain","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/661807705d23debee3ca86318320b24f983b9ef8a34301cf6e40545f1d6d25db?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/661807705d23debee3ca86318320b24f983b9ef8a34301cf6e40545f1d6d25db?s=96&d=mm&r=g","caption":"Sanjay Jain"},"sameAs":["http:\/\/www.sanjaywebdesigner.com\/"],"url":"https:\/\/www.sanjaywebdesigner.com\/articles\/author\/sanjay\/"}]}},"_links":{"self":[{"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/posts\/3519","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/comments?post=3519"}],"version-history":[{"count":0,"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/posts\/3519\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/media\/3521"}],"wp:attachment":[{"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/media?parent=3519"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/categories?post=3519"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/tags?post=3519"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}