{"id":7173,"date":"2020-05-14T13:39:07","date_gmt":"2020-05-14T13:39:07","guid":{"rendered":"https:\/\/lgconsultancy.wpcomstaging.com\/?p=2344"},"modified":"2022-08-02T12:53:18","modified_gmt":"2022-08-02T12:53:18","slug":"responsive-web-design","status":"publish","type":"post","link":"https:\/\/lng-consultancy.com\/staging\/5474\/responsive-web-design\/","title":{"rendered":"Responsive Web Design"},"content":{"rendered":"<h2 class=\"wp-block-heading\">What is Responsive Website?<\/h2>\n\n<p class=\"wp-block-paragraph\">A responsive website changes the layout to offer an experience based on the device being used, especially ideal for mobile viewing.<\/p>\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" class=\"wp-image-2354\" src=\"https:\/\/i0.wp.com\/lgconsultancy.wpcomstaging.com\/wp-content\/uploads\/2020\/05\/responsive_design.png?ssl=1\" alt=\"\" \/><\/figure><\/div>\n\n<p class=\"wp-block-paragraph\">A mobile responsive website includes design elements such as:<\/p>\n\n<ul class=\"wp-block-list\"><li>Readable text without requiring zoom<\/li><li>Adequate space for tap targets<\/li><li>No horizontal scrolling<\/li><\/ul>\n\n<p class=\"wp-block-paragraph\">It\u2019s also true that <a href=\"http:\/\/thenextweb.com\/google\/2015\/04\/22\/are-you-ready-for-googles-mobile-algorithm-change\/\">over 60% of searches<\/a> online now come from a mobile device. 65% of internet traffic in India comes via mobile<\/p><p>\u00a0<\/p><figure class=\"wp-block-image size-large\"><img decoding=\"async\" class=\"wp-image-2348\" src=\"https:\/\/i2.wp.com\/lngconsultancy.co.za\/wp-content\/uploads\/2020\/05\/Mary-Meeker-India-Internet-traffic-1240x775-1.png?fit=900%2C563&ssl=1\" alt=\"\" \/><\/figure>\n\n<h2 class=\"wp-block-heading\">What is Responsive Web Design or RWD?<\/h2>\n\n<p class=\"wp-block-paragraph\">Responsive Web design or RWD is the approach that suggests that design and development should respond to the user\u2019s behavior and environment based on screen size, platform, and orientation.<\/p>\n\n<h4 class=\"wp-block-heading\">Four Primary Components Of Responsive Web Designs<\/h4>\n\n<ul class=\"wp-block-list\"><li>Viewport<\/li><li>Grid View<\/li><li>Media Queries<\/li><li>Flexible Images<\/li><\/ul>\n\n<h3 class=\"wp-block-heading\">What is The Viewport?<\/h3>\n\n<p class=\"wp-block-paragraph\">The viewport is the user\u2019s visible area of a web page.<\/p>\n\n<p class=\"wp-block-paragraph\">The viewport varies with the device and will be smaller on a mobile phone than on a computer screen.<\/p>\n\n<h3 class=\"wp-block-heading\">Setting The Viewport<\/h3>\n\n<p class=\"wp-block-paragraph\">HTML5 introduced a method to let web designers take control over the viewport, through the tag.<\/p>\n\n<p class=\"wp-block-paragraph\">You should include the following viewport element in all your web pages:<\/p>\n\n<pre class=\"wp-block-code\"><code><b><meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"><\/b>\n<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">A viewport element gives the browser instructions on how to control the page\u2019s dimensions and scaling.<\/p>\n\n<p class=\"wp-block-paragraph\">The width=device-width part sets the width of the page to follow the screen-width of the device (which will vary depending on the device).<\/p>\n\n<p class=\"wp-block-paragraph\">The initial-scale=1.0 part sets the initial zoom level when the page is first loaded by the browser.<\/p>\n\n<h3 class=\"wp-block-heading\">What is Grid-View?<\/h3>\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" class=\"wp-image-2351\" src=\"https:\/\/i2.wp.com\/lngconsultancy.co.za\/wp-content\/uploads\/2020\/05\/gridview.jpg?fit=900%2C326&ssl=1\" alt=\"\" \/><\/figure>\n\n<p class=\"wp-block-paragraph\">Many web pages are based on a grid-view, which means that the page is divided into columns:<\/p>\n\n<p class=\"wp-block-paragraph\">Using a grid-view is very helpful when designing web pages. It makes it easier to place elements on the page.<\/p>\n\n<p class=\"wp-block-paragraph\">A responsive grid-view often has 12 columns, and has a total width of 100%, and will shrink and expand as you resize the browser window.<\/p>\n\n<h3 class=\"wp-block-heading\">What is a Media Query?<\/h3>\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" class=\"wp-image-2353\" src=\"https:\/\/i0.wp.com\/lgconsultancy.wpcomstaging.com\/wp-content\/uploads\/2020\/05\/Media-Queries.jpg?ssl=1\" alt=\"\" \/><\/figure>\n\n<p class=\"wp-block-paragraph\">A media query is a CSS technique introduced in CSS3.<\/p>\n\n<p class=\"wp-block-paragraph\">It uses the @media rule to include a block of CSS properties only if a certain condition is true.<\/p>\n\n<p class=\"wp-block-paragraph\">We can add a breakpoint where certain parts of the design will behave differently on each side of the breakpoint.<\/p>\n\n<h3 class=\"wp-block-heading\">Standard Media Queries for all Devices<\/h3>\n\n<pre class=\"wp-block-code\"><code>\/* TABLET LAYOUT (LANDSCAPE\/992PX) *\/\n@media only screen and (min-width: 992px) and (max-width: 1279px) {\n\t\u2026..\n}\n\n\/* TABLET LAYOUT (PORTRAIT\/768PX)  *\/\n@media only screen and (min-width: 768px) and (max-width: 991px) {\n\t\u2026..\n}\n\n\/* MOBILE LAYOUT (PORTRAIT\/320PX)  *\/\n@media only screen and (max-width: 767px) {\n\t\u2026.\n}\n\n\/* MOBILE LAYOUT (LANDSCAPE\/480PX) *\/\n@media only screen and (min-width: 480px) and (max-width: 767px) {\n\t\u2026.\n}\n\n<\/code><\/pre>\n\n<h3 class=\"wp-block-heading\">Media Queries external CSS files<\/h3>\n\n<p class=\"wp-block-paragraph\">The CSS media query syntax for calling an external stylesheet is like this:<\/p>\n\n<pre class=\"wp-block-code\"><code><link rel=\"stylesheet\" media=\"screen and (max-width: 600px)\" href=\"small.css\"><\/code><\/pre>\n\n<pre class=\"wp-block-code\"><code><link rel=\"stylesheet\" media=\"screen and (min-width: 600px)\" href=\"large.css\"><\/code><\/pre>\n\n<h3 class=\"wp-block-heading\">Flexible Images<\/h3>\n\n<p class=\"wp-block-paragraph\">The max-width property is set to 100% and the height is set to \u201cauto\u201d, the image will scale down if it has to, but never scale up to be larger than its original size<\/p>\n\n<pre class=\"wp-block-code\"><code>img {\n  max-width: 100%;\n  height: auto;\n}<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">HTML5 introduced the picture element, which lets you define more than one image.<\/p>\n\n<p class=\"wp-block-paragraph\">The <picture> element works similarly to the video and audio elements. You set up different sources, and the first source that fits the preferences is the one being used:<\/picture><\/p>\n\n<pre class=\"wp-block-code\"><code><picture><br \/><source srcset=\"smallflower.jpg\" media=\"(max-width: 400px)\"><br \/><source srcset=\"flowers.jpg\"><br \/><img src=\"flowers.jpg\" alt=\"Flowers\"><br \/><\/picture><\/code><\/pre>\n\n<h3 class=\"wp-block-heading\">Responsive Web Design Frameworks<\/h3>\n\n<ol class=\"wp-block-list\"><li>Bootstrap<\/li><li>Foundation<\/li><li>Pure<\/li><li>Skeleton<\/li><li>Montage<\/li><li>Simple<\/li><li>Gumby<\/li><li>Semantic UI<\/li><li>Cascade<\/li><\/ol>","protected":false},"excerpt":{"rendered":"<p>What is Responsive Website? A responsive website changes the layout to offer an experience based on the device being used, especially ideal for mobile viewing. A mobile responsive website includes design elements such as: Readable text without requiring zoom Adequate space for tap targets No horizontal scrolling It\u2019s also true that over 60% of searches [&hellip;]<\/p>\n","protected":false},"author":23,"featured_media":2356,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"nf_dc_page":"","om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[32],"tags":[34,35],"class_list":["post-7173","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-software-development","tag-responsive-web-design","tag-rwd"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Responsive Web Design - L&amp;G Consultancy<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/lng-consultancy.com\/responsive-web-design\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Responsive Web Design - L&amp;G Consultancy\" \/>\n<meta property=\"og:description\" content=\"What is Responsive Website? A responsive website changes the layout to offer an experience based on the device being used, especially ideal for mobile viewing. A mobile responsive website includes design elements such as: Readable text without requiring zoom Adequate space for tap targets No horizontal scrolling It\u2019s also true that over 60% of searches [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/lng-consultancy.com\/responsive-web-design\/\" \/>\n<meta property=\"og:site_name\" content=\"L&amp;G Consultancy\" \/>\n<meta property=\"article:published_time\" content=\"2020-05-14T13:39:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-02T12:53:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/lng-consultancy.com\/wp-content\/uploads\/2019\/05\/blog-slide2.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"870\" \/>\n\t<meta property=\"og:image:height\" content=\"520\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Sumantra Kundu\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sumantra Kundu\" \/>\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:\\\/\\\/lng-consultancy.com\\\/responsive-web-design\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/lng-consultancy.com\\\/responsive-web-design\\\/\"},\"author\":{\"name\":\"Sumantra Kundu\",\"@id\":\"http:\\\/\\\/sh024.global.temp.domains\\\/~landgcon\\\/#\\\/schema\\\/person\\\/8bbd82d2935fbd7fb924bc85c43b0be0\"},\"headline\":\"Responsive Web Design\",\"datePublished\":\"2020-05-14T13:39:07+00:00\",\"dateModified\":\"2022-08-02T12:53:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/lng-consultancy.com\\\/responsive-web-design\\\/\"},\"wordCount\":479,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/lng-consultancy.com\\\/responsive-web-design\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/lng-consultancy.com\\\/staging\\\/5474\\\/wp-content\\\/uploads\\\/2019\\\/05\\\/blog-slide2.jpg?fit=870%2C520&ssl=1\",\"keywords\":[\"Responsive Web Design\",\"RWD\"],\"articleSection\":[\"Software Development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/lng-consultancy.com\\\/responsive-web-design\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/lng-consultancy.com\\\/responsive-web-design\\\/\",\"url\":\"https:\\\/\\\/lng-consultancy.com\\\/responsive-web-design\\\/\",\"name\":\"Responsive Web Design - L&amp;G Consultancy\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/sh024.global.temp.domains\\\/~landgcon\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/lng-consultancy.com\\\/responsive-web-design\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/lng-consultancy.com\\\/responsive-web-design\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/lng-consultancy.com\\\/staging\\\/5474\\\/wp-content\\\/uploads\\\/2019\\\/05\\\/blog-slide2.jpg?fit=870%2C520&ssl=1\",\"datePublished\":\"2020-05-14T13:39:07+00:00\",\"dateModified\":\"2022-08-02T12:53:18+00:00\",\"author\":{\"@id\":\"http:\\\/\\\/sh024.global.temp.domains\\\/~landgcon\\\/#\\\/schema\\\/person\\\/8bbd82d2935fbd7fb924bc85c43b0be0\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/lng-consultancy.com\\\/responsive-web-design\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/lng-consultancy.com\\\/responsive-web-design\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/lng-consultancy.com\\\/responsive-web-design\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/lng-consultancy.com\\\/staging\\\/5474\\\/wp-content\\\/uploads\\\/2019\\\/05\\\/blog-slide2.jpg?fit=870%2C520&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/lng-consultancy.com\\\/staging\\\/5474\\\/wp-content\\\/uploads\\\/2019\\\/05\\\/blog-slide2.jpg?fit=870%2C520&ssl=1\",\"width\":870,\"height\":520},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/lng-consultancy.com\\\/responsive-web-design\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/lng-consultancy.com\\\/staging\\\/5474\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Responsive Web Design\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\\\/\\\/sh024.global.temp.domains\\\/~landgcon\\\/#website\",\"url\":\"http:\\\/\\\/sh024.global.temp.domains\\\/~landgcon\\\/\",\"name\":\"L&amp;G Consultancy\",\"description\":\"Your Technology Partner\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\\\/\\\/sh024.global.temp.domains\\\/~landgcon\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"http:\\\/\\\/sh024.global.temp.domains\\\/~landgcon\\\/#\\\/schema\\\/person\\\/8bbd82d2935fbd7fb924bc85c43b0be0\",\"name\":\"Sumantra Kundu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/dfac77a6c0be1aff31c457f701221589834438404882452bb8dc024463df50ae?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/dfac77a6c0be1aff31c457f701221589834438404882452bb8dc024463df50ae?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/dfac77a6c0be1aff31c457f701221589834438404882452bb8dc024463df50ae?s=96&d=mm&r=g\",\"caption\":\"Sumantra Kundu\"},\"url\":\"https:\\\/\\\/lng-consultancy.com\\\/staging\\\/5474\\\/author\\\/sumantra\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Responsive Web Design - L&amp;G Consultancy","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:\/\/lng-consultancy.com\/responsive-web-design\/","og_locale":"en_US","og_type":"article","og_title":"Responsive Web Design - L&amp;G Consultancy","og_description":"What is Responsive Website? A responsive website changes the layout to offer an experience based on the device being used, especially ideal for mobile viewing. A mobile responsive website includes design elements such as: Readable text without requiring zoom Adequate space for tap targets No horizontal scrolling It\u2019s also true that over 60% of searches [&hellip;]","og_url":"https:\/\/lng-consultancy.com\/responsive-web-design\/","og_site_name":"L&amp;G Consultancy","article_published_time":"2020-05-14T13:39:07+00:00","article_modified_time":"2022-08-02T12:53:18+00:00","og_image":[{"width":870,"height":520,"url":"https:\/\/lng-consultancy.com\/wp-content\/uploads\/2019\/05\/blog-slide2.jpg","type":"image\/jpeg"}],"author":"Sumantra Kundu","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Sumantra Kundu","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/lng-consultancy.com\/responsive-web-design\/#article","isPartOf":{"@id":"https:\/\/lng-consultancy.com\/responsive-web-design\/"},"author":{"name":"Sumantra Kundu","@id":"http:\/\/sh024.global.temp.domains\/~landgcon\/#\/schema\/person\/8bbd82d2935fbd7fb924bc85c43b0be0"},"headline":"Responsive Web Design","datePublished":"2020-05-14T13:39:07+00:00","dateModified":"2022-08-02T12:53:18+00:00","mainEntityOfPage":{"@id":"https:\/\/lng-consultancy.com\/responsive-web-design\/"},"wordCount":479,"commentCount":0,"image":{"@id":"https:\/\/lng-consultancy.com\/responsive-web-design\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/lng-consultancy.com\/staging\/5474\/wp-content\/uploads\/2019\/05\/blog-slide2.jpg?fit=870%2C520&ssl=1","keywords":["Responsive Web Design","RWD"],"articleSection":["Software Development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/lng-consultancy.com\/responsive-web-design\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/lng-consultancy.com\/responsive-web-design\/","url":"https:\/\/lng-consultancy.com\/responsive-web-design\/","name":"Responsive Web Design - L&amp;G Consultancy","isPartOf":{"@id":"http:\/\/sh024.global.temp.domains\/~landgcon\/#website"},"primaryImageOfPage":{"@id":"https:\/\/lng-consultancy.com\/responsive-web-design\/#primaryimage"},"image":{"@id":"https:\/\/lng-consultancy.com\/responsive-web-design\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/lng-consultancy.com\/staging\/5474\/wp-content\/uploads\/2019\/05\/blog-slide2.jpg?fit=870%2C520&ssl=1","datePublished":"2020-05-14T13:39:07+00:00","dateModified":"2022-08-02T12:53:18+00:00","author":{"@id":"http:\/\/sh024.global.temp.domains\/~landgcon\/#\/schema\/person\/8bbd82d2935fbd7fb924bc85c43b0be0"},"breadcrumb":{"@id":"https:\/\/lng-consultancy.com\/responsive-web-design\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/lng-consultancy.com\/responsive-web-design\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/lng-consultancy.com\/responsive-web-design\/#primaryimage","url":"https:\/\/i0.wp.com\/lng-consultancy.com\/staging\/5474\/wp-content\/uploads\/2019\/05\/blog-slide2.jpg?fit=870%2C520&ssl=1","contentUrl":"https:\/\/i0.wp.com\/lng-consultancy.com\/staging\/5474\/wp-content\/uploads\/2019\/05\/blog-slide2.jpg?fit=870%2C520&ssl=1","width":870,"height":520},{"@type":"BreadcrumbList","@id":"https:\/\/lng-consultancy.com\/responsive-web-design\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/lng-consultancy.com\/staging\/5474\/"},{"@type":"ListItem","position":2,"name":"Responsive Web Design"}]},{"@type":"WebSite","@id":"http:\/\/sh024.global.temp.domains\/~landgcon\/#website","url":"http:\/\/sh024.global.temp.domains\/~landgcon\/","name":"L&amp;G Consultancy","description":"Your Technology Partner","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/sh024.global.temp.domains\/~landgcon\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"http:\/\/sh024.global.temp.domains\/~landgcon\/#\/schema\/person\/8bbd82d2935fbd7fb924bc85c43b0be0","name":"Sumantra Kundu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/dfac77a6c0be1aff31c457f701221589834438404882452bb8dc024463df50ae?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/dfac77a6c0be1aff31c457f701221589834438404882452bb8dc024463df50ae?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/dfac77a6c0be1aff31c457f701221589834438404882452bb8dc024463df50ae?s=96&d=mm&r=g","caption":"Sumantra Kundu"},"url":"https:\/\/lng-consultancy.com\/staging\/5474\/author\/sumantra\/"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/lng-consultancy.com\/staging\/5474\/wp-content\/uploads\/2019\/05\/blog-slide2.jpg?fit=870%2C520&ssl=1","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/lng-consultancy.com\/staging\/5474\/wp-json\/wp\/v2\/posts\/7173","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lng-consultancy.com\/staging\/5474\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/lng-consultancy.com\/staging\/5474\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/lng-consultancy.com\/staging\/5474\/wp-json\/wp\/v2\/users\/23"}],"replies":[{"embeddable":true,"href":"https:\/\/lng-consultancy.com\/staging\/5474\/wp-json\/wp\/v2\/comments?post=7173"}],"version-history":[{"count":1,"href":"https:\/\/lng-consultancy.com\/staging\/5474\/wp-json\/wp\/v2\/posts\/7173\/revisions"}],"predecessor-version":[{"id":7463,"href":"https:\/\/lng-consultancy.com\/staging\/5474\/wp-json\/wp\/v2\/posts\/7173\/revisions\/7463"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/lng-consultancy.com\/staging\/5474\/wp-json\/wp\/v2\/media\/2356"}],"wp:attachment":[{"href":"https:\/\/lng-consultancy.com\/staging\/5474\/wp-json\/wp\/v2\/media?parent=7173"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/lng-consultancy.com\/staging\/5474\/wp-json\/wp\/v2\/categories?post=7173"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lng-consultancy.com\/staging\/5474\/wp-json\/wp\/v2\/tags?post=7173"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}