{"id":18034,"date":"2023-09-25T07:35:04","date_gmt":"2023-09-25T07:35:04","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=18034"},"modified":"2023-09-25T07:35:04","modified_gmt":"2023-09-25T07:35:04","slug":"block-and-inline-elements-in-html","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/","title":{"rendered":"Block and Inline elements in HTML"},"content":{"rendered":"<p>Within HTML, you&#8217;ve encountered various tags, each of which possesses a default display value, contingent upon its element type. Essentially, HTML elements conform to two fundamental display categories: (a) Block and (b) Inline. This article will delve into the details of block and inline elements in HTML.<\/p>\n<h2>What is Block elements in HTML?<\/h2>\n<p>Block-level elements are those that typically start a new line on a webpage and take up the full available width by default. Also, Browser adds a margin to its border.<br \/>\nFor eg &#8211; &lt; div&gt; , &lt; p&gt;, etc.<\/p>\n<pre><code>< h2>This is to check the block Elements<\/h2>\n< div>\n   < p>This is a paragrah-1 inside div1<\/p>\n< \/div><\/code><\/pre>\n<p>Here the &lt; div&gt; tag is a block-level element that is used to group together other HTML elements and create a container that can be styled. Also, here both &lt; p&gt; and &lt; h2&gt; also act as block elements.<br \/>\nOutput:<br \/>\n![](<img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695627216042-download%20%2851%29.png\" alt=\"\" \/><\/p>\n<h2>What is Inline Element in HTML?<\/h2>\n<p>Inline-level elements, on the other hand, do not start a new line on a webpage and only take up as much width as necessary to display their content.<br \/>\nThe browser does not add any extra space or margin to it.<br \/>\nFor eg &#8211; &lt; span&gt;, &lt; a&gt;, &lt; b&gt; , etc.<\/p>\n<p>&lt; h1&gt;This is for inline Element&gt;<br \/>\n&lt; p&gt;span starts here &#8211;<br \/>\n&lt; span&gt;This is a span inside a paragraph&lt; \/span&gt;<br \/>\nSpan ends here&lt; \/p&gt;<\/p>\n<p>Here the &lt; span&gt; tag is an inline-level element that is used to group and apply styling to small pieces of text or other inline-level elements<\/p>\n<p><strong>Output:<\/strong><br \/>\n<img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695627216042-download%20%2851%29.png\" alt=\"\" \/><\/p>\n<h2>Difference between inline and block level elements:<\/h2>\n<p>Here are some key differences between block-level and inline-level elements in HTML:<\/p>\n<p><strong>1. Layout &#8211;<\/strong><\/p>\n<ul>\n<li>Block-level elements take  the full width available to them, start on a new line<\/li>\n<li>Inline-level elements only take as much width as necessary to display their content and stay in the same line as other inline elements.<\/li>\n<\/ul>\n<p><strong>2. Nesting &#8211;<\/strong><\/p>\n<ul>\n<li>Block-level elements can contain both block-level and inline-level elements<\/li>\n<li>Inline-level elements can only contain other inline-level elements or text.<\/li>\n<\/ul>\n<p><strong>3. Content-<\/strong><\/p>\n<ul>\n<li>Block-level elements are typically used to define larger sections of content<\/li>\n<li>Inline-level elements are often used to add style to specific parts of a block-level element&#8217;s content.<\/li>\n<\/ul>\n<p><strong>4. Display &#8211;<\/strong><br \/>\nBlock-level elements are displayed as a rectangular block<br \/>\nInline-level elements are displayed within the text flow<\/p>\n<p><strong>5. Semantic meaning &#8211;<\/strong><br \/>\nBlock-level elements are mostly used to define structural elements such as headings, paragraphs, and lists<br \/>\nInline-level elements are mostly used for text formatting, hyperlinks, and images.<br \/>\nHence these are the very basic but noticeable differences between block and inline elements in HTML.<\/p>\n<h2>Some supported Block Elements are &#8211;<\/h2>\n<p>These are some of the Block elements in HTML &#8211;<\/p>\n<ul>\n<li>HTML &lt; article&gt; Tag<\/li>\n<li>HTML &lt; figcaption&gt; Tag<\/li>\n<li>HTML &lt; fieldset&gt; Tag<\/li>\n<li>HTML &lt; figure&gt; Tag<\/li>\n<li>HTML &lt; footer&gt; Tag<\/li>\n<li>HTML &lt; header&gt; Tag<\/li>\n<li>HTML &lt; canvas&gt; Tag<\/li>\n<li>HTML &lt; form&gt; Tag<\/li>\n<li>HTML &lt; Heading&gt; Tag<\/li>\n<li>HTML &lt; hr&gt; Tag<\/li>\n<li>HTML &lt; li&gt; Tag<\/li>\n<li>HTML &lt; main&gt; Tag<\/li>\n<li>HTML &lt; nav&gt; Tag<\/li>\n<li>HTML &lt; noscript&gt; Tag<\/li>\n<li>HTML &lt; ol&gt; Tag<\/li>\n<\/ul>\n<h2>Some supported Inline Elements are &#8211;<\/h2>\n<p>These are some of the Block elements in HTML &#8211;<\/p>\n<ul>\n<li>HTML &lt; a&gt; Tag<\/li>\n<li>HTML &lt; span&gt; Tag<\/li>\n<li>HTML &lt; abbr&gt; Tag<\/li>\n<li>HTML &lt; acronym&gt; Tag<\/li>\n<li>HTML &lt; b&gt; Tag<\/li>\n<li>HTML &lt; cite&gt; Tag<\/li>\n<li>HTML &lt; code&gt; Tag<\/li>\n<li>HTML &lt; dfn&gt; Tag<\/li>\n<li>HTML &lt; em&gt; Tag<\/li>\n<li>HTML &lt; i&gt; Tag<\/li>\n<li>HTML &lt; strong&gt; Tag<\/li>\n<li>HTML &lt; sub&gt; Tag<\/li>\n<li>HTML &lt; sup&gt; Tag<\/li>\n<li>HTML &lt; textarea&gt; tag<\/li>\n<li>HTML &lt; bdo&gt; Tag<\/li>\n<li>HTML &lt; big&gt; Tag<\/li>\n<li>HTML &lt; img&gt; Tag<\/li>\n<li>HTML &lt; input&gt; Tag<\/li>\n<li>HTML &lt; kbd&gt; Tag<\/li>\n<li>HTML &lt; label&gt; Tag<\/li>\n<\/ul>\n<p><strong>Conclusion &#8211;<\/strong><br \/>\nIn HTML, understanding the distinction between block and inline elements is fundamental for web developers and designers. Block elements create a visible block-level structure, typically starting on a new line and extending the full width of their container, while inline elements flow within the content and only take up as much width as necessary.<\/p>\n<h2>FAQs related to Block Element in HTML<\/h2>\n<p><strong>1. What is the key difference between block and inline elements in HTML?<\/strong><br \/>\nBlock elements create distinct, block-level structures, while inline elements flow within the content, taking up only as much width as needed.<\/p>\n<p><strong>2. Can block and inline elements be nested within each other?<\/strong><br \/>\nYes, block and inline elements can be nested within one another, but the outermost element&#8217;s display type will typically dominate the layout behavior.<\/p>\n<p><strong>3. How can I change the display property of an element in HTML and CSS?<\/strong><br \/>\nYou can change the display property using CSS by specifying the display property and setting it to values like block, inline, inline-block, or others, depending on your desired layout.<\/p>\n<p><strong>4. What are some common examples of block-level elements?<\/strong><br \/>\nCommon block-level elements include &lt; div&gt;, &lt; p&gt;, &lt; h1&gt; to &lt; h6&gt;, &lt; ul&gt;, &lt; ol&gt;, and &lt; li&gt;.<\/p>\n<p><strong>5. Which HTML elements are typically inline elements?<\/strong><br \/>\nSome commonly used inline elements are &lt; span&gt;, &lt; a&gt;, &lt; strong&gt;, &lt; em&gt;, &lt; img&gt;, and &lt; br&gt;.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Within HTML, you&#8217;ve encountered various tags, each of which possesses a default display value, contingent upon its element type. Essentially, HTML elements conform to two fundamental display categories: (a) Block and (b) Inline. This article will delve into the details of block and inline elements in HTML. What is Block elements in HTML? Block-level elements [&hellip;]<\/p>\n","protected":false},"author":52,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[196],"tags":[],"class_list":["post-18034","post","type-post","status-publish","format-standard","hentry","category-html"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Block and Inline elements in HTML<\/title>\n<meta name=\"description\" content=\"Within HTML, you&#039;ve encountered various tags, each of which possesses a default display value, contingent upon its element type.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Block and Inline elements in HTML\" \/>\n<meta property=\"og:description\" content=\"Within HTML, you&#039;ve encountered various tags, each of which possesses a default display value, contingent upon its element type.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/\" \/>\n<meta property=\"og:site_name\" content=\"PrepBytes Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prepbytes0211\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-09-25T07:35:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695627216042-download%20%2851%29.png\" \/>\n<meta name=\"author\" content=\"Prepbytes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prepbytes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"Block and Inline elements in HTML\",\"datePublished\":\"2023-09-25T07:35:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/\"},\"wordCount\":883,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695627216042-download%20%2851%29.png\",\"articleSection\":[\"HTML\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/\",\"name\":\"Block and Inline elements in HTML\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695627216042-download%20%2851%29.png\",\"datePublished\":\"2023-09-25T07:35:04+00:00\",\"description\":\"Within HTML, you've encountered various tags, each of which possesses a default display value, contingent upon its element type.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695627216042-download%20%2851%29.png\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695627216042-download%20%2851%29.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HTML\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/html\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Block and Inline elements in HTML\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/43.205.93.38\/#website\",\"url\":\"http:\/\/43.205.93.38\/\",\"name\":\"PrepBytes Blog\",\"description\":\"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING\",\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/43.205.93.38\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/43.205.93.38\/#organization\",\"name\":\"Prepbytes\",\"url\":\"http:\/\/43.205.93.38\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"contentUrl\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"width\":160,\"height\":160,\"caption\":\"Prepbytes\"},\"image\":{\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/prepbytes0211\/\",\"https:\/\/www.instagram.com\/prepbytes\/\",\"https:\/\/www.linkedin.com\/company\/prepbytes\/\",\"https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\",\"name\":\"Prepbytes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"caption\":\"Prepbytes\"},\"url\":\"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Block and Inline elements in HTML","description":"Within HTML, you've encountered various tags, each of which possesses a default display value, contingent upon its element type.","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:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/","og_locale":"en_US","og_type":"article","og_title":"Block and Inline elements in HTML","og_description":"Within HTML, you've encountered various tags, each of which possesses a default display value, contingent upon its element type.","og_url":"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-09-25T07:35:04+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695627216042-download%20%2851%29.png","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"Block and Inline elements in HTML","datePublished":"2023-09-25T07:35:04+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/"},"wordCount":883,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695627216042-download%20%2851%29.png","articleSection":["HTML"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/","url":"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/","name":"Block and Inline elements in HTML","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695627216042-download%20%2851%29.png","datePublished":"2023-09-25T07:35:04+00:00","description":"Within HTML, you've encountered various tags, each of which possesses a default display value, contingent upon its element type.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695627216042-download%20%2851%29.png","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695627216042-download%20%2851%29.png"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/block-and-inline-elements-in-html\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"HTML","item":"https:\/\/prepbytes.com\/blog\/category\/html\/"},{"@type":"ListItem","position":3,"name":"Block and Inline elements in HTML"}]},{"@type":"WebSite","@id":"http:\/\/43.205.93.38\/#website","url":"http:\/\/43.205.93.38\/","name":"PrepBytes Blog","description":"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING","publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/43.205.93.38\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/43.205.93.38\/#organization","name":"Prepbytes","url":"http:\/\/43.205.93.38\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/","url":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","contentUrl":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","width":160,"height":160,"caption":"Prepbytes"},"image":{"@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/prepbytes0211\/","https:\/\/www.instagram.com\/prepbytes\/","https:\/\/www.linkedin.com\/company\/prepbytes\/","https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA"]},{"@type":"Person","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e","name":"Prepbytes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","caption":"Prepbytes"},"url":"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/"}]}},"_links":{"self":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18034","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/users\/52"}],"replies":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/comments?post=18034"}],"version-history":[{"count":1,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18034\/revisions"}],"predecessor-version":[{"id":18040,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18034\/revisions\/18040"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=18034"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=18034"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=18034"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}