{"id":10349,"date":"2024-03-04T10:30:00","date_gmt":"2024-03-04T10:30:00","guid":{"rendered":"https:\/\/codehim.com\/?p=10349"},"modified":"2024-03-04T08:30:59","modified_gmt":"2024-03-04T03:30:59","slug":"product-card-using-bootstrap-5","status":"publish","type":"post","link":"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/","title":{"rendered":"Product Card Using Bootstrap 5"},"content":{"rendered":"<p>This code creates a product card using Bootstrap 5. It showcases product details attractively. It&#8217;s helpful for displaying items with images, titles, ratings, prices, and an &#8216;Add to Cart&#8217; button. This layout enhances product presentation on websites.<\/p>\n<p>You can use this code to build <a href=\"https:\/\/codehim.com\/modal\/responsive-product-card-with-quick-view-product-preview-popup-effect\/\" target=\"_blank\" rel=\"noopener\">stylish product cards<\/a> on your website, enhancing the visual appeal of your product listings. The benefit lies in creating an engaging and user-friendly interface, improving the overall shopping experience for your visitors.<\/p>\n<h2>How to Create Product Card Using Bootstrap 5<\/h2>\n<p>1. Begin by adding the necessary CSS links for <a href=\"https:\/\/getbootstrap.com\/\" target=\"_blank\" rel=\"noopener\">Bootstrap<\/a> and Bootstrap Icons in the <code>&lt;head&gt;<\/code> section of your HTML file.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;link rel='stylesheet' href='https:\/\/cdn.jsdelivr.net\/npm\/bootstrap@5.3.1\/dist\/css\/bootstrap.min.css'&gt;\r\n&lt;link rel='stylesheet' href='https:\/\/cdn.jsdelivr.net\/npm\/bootstrap-icons@1.10.5\/font\/bootstrap-icons.css'&gt;\r\n<\/pre>\n<p>2. Create a container div using the Bootstrap class &#8216;container m-4&#8217; to set the margin. Inside it, build a card with the &#8216;card&#8217; class and customize its appearance with &#8216;border-0 rounded-0 shadow&#8217;.<\/p>\n<p>Within the card, include the product image, title, rating stars, and bookmark icon. Utilize Bootstrap&#8217;s grid system for alignment.<\/p>\n<p>Use the grid system again to showcase the product price and the &#8216;Add to Cart&#8217; button at the bottom of the card.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div class=\"container m-4\"&gt;\r\n  &lt;div class=\"card border-0 rounded-0 shadow\" style=\"width: 18rem;\"&gt;\r\n    &lt;img src=\"https:\/\/codingyaar.com\/wp-content\/uploads\/bag-scaled.jpg\" class=\"card-img-top rounded-0\" alt=\"...\"&gt;\r\n    &lt;div class=\"card-body mt-3 mb-3\"&gt;\r\n      &lt;div class=\"row\"&gt;\r\n        &lt;div class=\"col-10\"&gt;\r\n          &lt;h4 class=\"card-title\"&gt;Product title&lt;\/h4&gt;\r\n          &lt;p class=\"card-text\"&gt;\r\n            &lt;i class=\"bi bi-star-fill text-warning\"&gt;&lt;\/i&gt;\r\n            &lt;i class=\"bi bi-star-fill text-warning\"&gt;&lt;\/i&gt;\r\n            &lt;i class=\"bi bi-star-fill text-warning\"&gt;&lt;\/i&gt;\r\n            &lt;i class=\"bi bi-star-fill text-warning\"&gt;&lt;\/i&gt;\r\n            (123)\r\n          &lt;\/p&gt;\r\n        &lt;\/div&gt;\r\n        &lt;div class=\"col-2\"&gt;\r\n          &lt;i class=\"bi bi-bookmark-plus fs-2\"&gt;&lt;\/i&gt;\r\n        &lt;\/div&gt;\r\n      &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n    &lt;div class=\"row align-items-center text-center g-0\"&gt;\r\n      &lt;div class=\"col-4\"&gt;\r\n        &lt;h5&gt;$129&lt;\/h5&gt;\r\n      &lt;\/div&gt;\r\n      &lt;div class=\"col-8\"&gt;\r\n        &lt;a href=\"#\" class=\"btn btn-dark w-100 p-3 rounded-0 text-warning\"&gt;ADD TO CART&lt;\/a&gt;\r\n      &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n  &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n\r\n&lt;p class=\"mt-5 text-center\"&gt;Get a step-by-step written explanation here: &lt;a href=\"https:\/\/codingyaar.com\/product-card-bootstrap-html\" target=\"_blank\"&gt;Bootstrap 5 Product Card&lt;\/a&gt; &lt;\/p&gt;\r\n&lt;p class=\"mt-5 text-center\"&gt;Get a step-by-step video explanation here: &lt;a href=\"https:\/\/youtu.be\/4jXWB-E_MqI\" target=\"_blank\"&gt;Bootstrap 5 Product Card&lt;\/a&gt; &lt;\/p&gt;\r\n<\/pre>\n<p>Feel free to customize the code further based on your needs. Adjust colors, fonts, and sizes to match your website&#8217;s theme.<\/p>\n<p>That&#8217;s all! hopefully, you have successfully created a Product Card Using Bootstrap 5. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code creates a product card using Bootstrap 5. It showcases product details attractively. It&#8217;s helpful for displaying items with&#8230;<\/p>\n","protected":false},"author":1,"featured_media":10359,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[123],"tags":[],"class_list":["post-10349","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>Product Card Using Bootstrap 5 &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Product Card 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\/product-card-using-bootstrap-5\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Product Card Using Bootstrap 5 &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Product Card Using Bootstrap 5. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/bootstrap\/product-card-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\/Product-Card-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\/product-card-using-bootstrap-5\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Product Card Using Bootstrap 5\",\"datePublished\":\"2024-03-04T10:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/\"},\"wordCount\":226,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Product-Card-Using-Bootstrap-5.png\",\"articleSection\":[\"Bootstrap\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/\",\"url\":\"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/\",\"name\":\"Product Card Using Bootstrap 5 &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Product-Card-Using-Bootstrap-5.png\",\"datePublished\":\"2024-03-04T10:30:00+00:00\",\"description\":\"Here is a free code snippet to create a Product Card Using Bootstrap 5. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Product-Card-Using-Bootstrap-5.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Product-Card-Using-Bootstrap-5.png\",\"width\":1280,\"height\":980,\"caption\":\"Product Card Using Bootstrap 5\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/product-card-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\":\"Product Card 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":"Product Card Using Bootstrap 5 &#8212; CodeHim","description":"Here is a free code snippet to create a Product Card 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\/product-card-using-bootstrap-5\/","og_locale":"en_US","og_type":"article","og_title":"Product Card Using Bootstrap 5 &#8212; CodeHim","og_description":"Here is a free code snippet to create a Product Card Using Bootstrap 5. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/bootstrap\/product-card-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\/Product-Card-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\/product-card-using-bootstrap-5\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Product Card Using Bootstrap 5","datePublished":"2024-03-04T10:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/"},"wordCount":226,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Product-Card-Using-Bootstrap-5.png","articleSection":["Bootstrap"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/","url":"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/","name":"Product Card Using Bootstrap 5 &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Product-Card-Using-Bootstrap-5.png","datePublished":"2024-03-04T10:30:00+00:00","description":"Here is a free code snippet to create a Product Card Using Bootstrap 5. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/bootstrap\/product-card-using-bootstrap-5\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Product-Card-Using-Bootstrap-5.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Product-Card-Using-Bootstrap-5.png","width":1280,"height":980,"caption":"Product Card Using Bootstrap 5"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/bootstrap\/product-card-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":"Product Card 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":3259,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/10349","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=10349"}],"version-history":[{"count":1,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/10349\/revisions"}],"predecessor-version":[{"id":11293,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/10349\/revisions\/11293"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/10359"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=10349"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=10349"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=10349"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}