{"id":10350,"date":"2024-03-04T10:30:00","date_gmt":"2024-03-04T10:30:00","guid":{"rendered":"https:\/\/codehim.com\/?p=10350"},"modified":"2024-03-04T08:30:59","modified_gmt":"2024-03-04T03:30:59","slug":"overlapping-images-using-bootstrap-5","status":"publish","type":"post","link":"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/","title":{"rendered":"Overlapping Images Using Bootstrap 5"},"content":{"rendered":"<p>This code demonstrates how to use Bootstrap 5 to create overlapping images on a webpage. It aligns images and content nicely for a visually appealing layout. The method helps in structuring and styling content creatively using Bootstrap.<\/p>\n<p>You can use this code on websites to create visually striking sections, like &#8216;About Us&#8217; pages. It allows easy image and content alignment, enhancing visual appeal.<\/p>\n<h2>How to Create Overlapping Images Using Bootstrap 5<\/h2>\n<p>1. First of all, load the <a href=\"https:\/\/getbootstrap.com\/\" target=\"_blank\" rel=\"noopener\">Bootstrap 5 CSS<\/a> by adding the following CDN link into the head tag of your HTML document.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;link rel='stylesheet' href='https:\/\/cdn.jsdelivr.net\/npm\/bootstrap@5.0.1\/dist\/css\/bootstrap.min.css'&gt;<\/pre>\n<p>2. Create a section with the class &#8220;about_section&#8221; to contain the content. Use Bootstrap&#8217;s grid system (<code>row<\/code> and <code>col-*<\/code>) for layout. Place your content within the <code>.content<\/code> div and replace the placeholder images (<code>image1.jpg<\/code>, <code>image2.jpg<\/code>, <code>image3.jpg<\/code>) with your desired images. Customize styles as needed.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;section class=\"about_section padding\"&gt;\r\n    &lt;div class=\"container\"&gt;\r\n        &lt;div class=\"row justify-content-center align-items-center\"&gt;\r\n            &lt;div class=\"content col-12 col-lg-5 p-4 m-3\"&gt;\r\n                &lt;div class=\"text-center\"&gt;\r\n                  &lt;h1&gt;Sea Creature&lt;\/h1&gt;\r\n                    &lt;p class=\"mb-5\"&gt;Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa minus cupiditate aliquid rerum est voluptate exercitationem possimus aperiam laborum praesentium provident aut illo consequatur quam explicabo quidem similique, consequuntur cumque. &lt;br&gt;\r\n                  Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa minus cupiditate aliquid rerum est voluptate exercitationem possimus aperiam laborum praesentium provident aut illo consequatur quam explicabo quidem similique, consequuntur cumque.&lt;\/p&gt;\r\n\r\n                &lt;\/div&gt;\r\n            &lt;\/div&gt;\r\n            &lt;div class=\"col-12 col-lg-6\"&gt;\r\n                &lt;div class=\"about_img\"&gt;\r\n                    &lt;img src=\"https:\/\/www.jellypir.at\/CODEPEN\/picture\/autre\/squaejell_1.jpg\" alt=\"idea-images\" class=\"about_img_1 \"&gt;\r\n                    &lt;img src=\"https:\/\/www.jellypir.at\/CODEPEN\/picture\/autre\/squaejell_2.jpg\" alt=\"idea-images\" class=\"about_img_2\"&gt;\r\n                    &lt;img src=\"https:\/\/www.jellypir.at\/CODEPEN\/picture\/autre\/squaejell_3.jpg\" alt=\"idea-images\" class=\"about_img_3\" &gt;\r\n                &lt;\/div&gt;\r\n            &lt;\/div&gt;\r\n            \r\n        &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n&lt;\/section&gt;\r\n<\/pre>\n<p>3. Add custom CSS to achieve the overlapping effect. Utilize classes like <code>.about_section<\/code>, <code>.about_img<\/code>, <code>.about_img img<\/code>, and media queries for responsive design.<\/p>\n<pre class=\"prettyprint linenums lang-css\">@import url('https:\/\/fonts.googleapis.com\/css2?family=Molle:ital@1&amp;display=swap');\r\n\r\nbody\r\n{\r\n  background-color: #f6feff;\r\n  background: #076585;  \/* fallback for old browsers *\/\r\nbackground: -webkit-linear-gradient(to right, #fff, #076585);  \/* Chrome 10-25, Safari 5.1-6 *\/\r\nbackground: linear-gradient(to right, #fff, #076585); \/* W3C, IE 10+\/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ *\/\r\n\r\n  \r\n}\r\n\r\nh1\r\n{\r\n  font-family: 'Molle', cursive;\r\n  color:CornflowerBlue;\r\n}\r\n\r\np{\r\n  color:DimGrey;\r\n}\r\n\r\n.padding {padding: 80px 0;}\r\n\r\n.about_section .about_img img\r\n{\r\n    max-width:100%;\r\n\t  border-radius:15px;\r\n    box-shadow:0 16px 28px 0 rgba(8,56,103,.5);}\r\n\r\n@media (min-width:992px)\r\n{\r\n    .about_section .about_img img\r\n    {\r\n\t  width:60%;}\r\n\r\n    .about_section .about_img_2\r\n    {\r\n    margin:-180px 0 0 270px;}\r\n    \r\n    .about_section .about_img_3\r\n    {\r\n    margin:-260px 0 0 40px;}\r\n}\r\n\r\n@media(max-width:991px)\r\n{\r\n    .about_section .about_img img\r\n  {\r\n      margin:3rem 0;}\r\n}\r\n\r\n.about_section .content \r\n{\r\n  background-color:white;\r\n  border-radius:35px;\r\n  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;\r\n}<\/pre>\n<p>That&#8217;s all! hopefully, you have successfully created Overlapping Images on your website. This layout adds a modern touch to your webpage, making it visually appealing for visitors. Feel free to experiment with different images and styles to suit your website&#8217;s aesthetics. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code demonstrates how to use Bootstrap 5 to create overlapping images on a webpage. It aligns images and content&#8230;<\/p>\n","protected":false},"author":1,"featured_media":10361,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[123],"tags":[],"class_list":["post-10350","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bootstrap"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Overlapping Images Using Bootstrap 5 &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Overlapping Images Using Bootstrap 5. You can view demo and download the source code.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Overlapping Images Using Bootstrap 5 &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Overlapping Images Using Bootstrap 5. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/\" \/>\n<meta property=\"og:site_name\" content=\"CodeHim\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codehimofficial\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-04T10:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Overlapping-Images-Using-Bootstrap-5.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"980\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Asif Mughal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:site\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Asif Mughal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Overlapping Images Using Bootstrap 5\",\"datePublished\":\"2024-03-04T10:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/\"},\"wordCount\":205,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Overlapping-Images-Using-Bootstrap-5.png\",\"articleSection\":[\"Bootstrap\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/\",\"url\":\"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/\",\"name\":\"Overlapping Images Using Bootstrap 5 &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Overlapping-Images-Using-Bootstrap-5.png\",\"datePublished\":\"2024-03-04T10:30:00+00:00\",\"description\":\"Here is a free code snippet to create a Overlapping Images Using Bootstrap 5. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Overlapping-Images-Using-Bootstrap-5.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Overlapping-Images-Using-Bootstrap-5.png\",\"width\":1280,\"height\":980,\"caption\":\"Overlapping Images Using Bootstrap 5\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Bootstrap\",\"item\":\"https:\/\/codehim.com\/category\/bootstrap\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Overlapping Images Using Bootstrap 5\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/codehim.com\/#website\",\"url\":\"https:\/\/codehim.com\/\",\"name\":\"CodeHim\",\"description\":\"Web Design Code Snippets\",\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"alternateName\":\"Web Design Codes\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/codehim.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/codehim.com\/#organization\",\"name\":\"CodeHim - Web Design Code & Scripts\",\"url\":\"https:\/\/codehim.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"contentUrl\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"width\":280,\"height\":280,\"caption\":\"CodeHim - Web Design Code & Scripts\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/codehimofficial\",\"https:\/\/x.com\/CodeHimOfficial\",\"https:\/\/www.instagram.com\/codehim\/\",\"https:\/\/www.linkedin.com\/company\/codehim\",\"https:\/\/co.pinterest.com\/codehim\/\",\"https:\/\/www.youtube.com\/@codehim\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\",\"name\":\"Asif Mughal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"caption\":\"Asif Mughal\"},\"description\":\"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.\",\"sameAs\":[\"https:\/\/codehim.com\"],\"url\":\"https:\/\/codehim.com\/author\/asif-mughal\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Overlapping Images Using Bootstrap 5 &#8212; CodeHim","description":"Here is a free code snippet to create a Overlapping Images Using Bootstrap 5. You can view demo and download the source code.","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:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/","og_locale":"en_US","og_type":"article","og_title":"Overlapping Images Using Bootstrap 5 &#8212; CodeHim","og_description":"Here is a free code snippet to create a Overlapping Images Using Bootstrap 5. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-03-04T10:30:00+00:00","og_image":[{"width":1280,"height":980,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Overlapping-Images-Using-Bootstrap-5.png","type":"image\/png"}],"author":"Asif Mughal","twitter_card":"summary_large_image","twitter_creator":"@CodeHimOfficial","twitter_site":"@CodeHimOfficial","twitter_misc":{"Written by":"Asif Mughal","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Overlapping Images Using Bootstrap 5","datePublished":"2024-03-04T10:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/"},"wordCount":205,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Overlapping-Images-Using-Bootstrap-5.png","articleSection":["Bootstrap"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/","url":"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/","name":"Overlapping Images Using Bootstrap 5 &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Overlapping-Images-Using-Bootstrap-5.png","datePublished":"2024-03-04T10:30:00+00:00","description":"Here is a free code snippet to create a Overlapping Images Using Bootstrap 5. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Overlapping-Images-Using-Bootstrap-5.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Overlapping-Images-Using-Bootstrap-5.png","width":1280,"height":980,"caption":"Overlapping Images Using Bootstrap 5"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/bootstrap\/overlapping-images-using-bootstrap-5\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Bootstrap","item":"https:\/\/codehim.com\/category\/bootstrap\/"},{"@type":"ListItem","position":3,"name":"Overlapping Images Using Bootstrap 5"}]},{"@type":"WebSite","@id":"https:\/\/codehim.com\/#website","url":"https:\/\/codehim.com\/","name":"CodeHim","description":"Web Design Code Snippets","publisher":{"@id":"https:\/\/codehim.com\/#organization"},"alternateName":"Web Design Codes","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codehim.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codehim.com\/#organization","name":"CodeHim - Web Design Code & Scripts","url":"https:\/\/codehim.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/","url":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","contentUrl":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","width":280,"height":280,"caption":"CodeHim - Web Design Code & Scripts"},"image":{"@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codehimofficial","https:\/\/x.com\/CodeHimOfficial","https:\/\/www.instagram.com\/codehim\/","https:\/\/www.linkedin.com\/company\/codehim","https:\/\/co.pinterest.com\/codehim\/","https:\/\/www.youtube.com\/@codehim"]},{"@type":"Person","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed","name":"Asif Mughal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","caption":"Asif Mughal"},"description":"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.","sameAs":["https:\/\/codehim.com"],"url":"https:\/\/codehim.com\/author\/asif-mughal\/"}]}},"views":3147,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/10350","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/comments?post=10350"}],"version-history":[{"count":1,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/10350\/revisions"}],"predecessor-version":[{"id":11294,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/10350\/revisions\/11294"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/10361"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=10350"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=10350"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=10350"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}