{"id":9021,"date":"2024-01-19T17:58:00","date_gmt":"2024-01-19T17:58:00","guid":{"rendered":"https:\/\/codehim.com\/?p=9021"},"modified":"2024-01-22T15:58:59","modified_gmt":"2024-01-22T10:58:59","slug":"image-shapes-in-css-with-example","status":"publish","type":"post","link":"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/","title":{"rendered":"6+ Image Shapes in CSS with Example"},"content":{"rendered":"<p>This CSS code example helps you to create various image shapes like diamonds, octagons, hexagons, and dodecagons. These shapes can be used to enhance your web design and layout. The code uses CSS transformations and overflow properties to achieve these beautiful shapes.<\/p>\n<p>It simplifies the process of adding unique design elements to your portfolio. You can use these shapes for a <a href=\"https:\/\/codehim.com\/gallery\/css-hexagon-grid-image-gallery\/\" target=\"_blank\" rel=\"noopener\">photo gallery<\/a> or slideshow on your website.<\/p>\n<h2>How to Create Image Shapes In CSS<\/h2>\n<p>1. To get started, create an HTML file and structure your web page as needed. You can use the following sample HTML structure as a starting point:<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;!DOCTYPE html&gt;\r\n&lt;html lang=\"en\"&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=\"UTF-8\"&gt;\r\n&lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"&gt;\r\n&lt;link rel=\"stylesheet\" href=\"styles.css\"&gt;\r\n&lt;title&gt;Stylish Shapes&lt;\/title&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n&lt;!-- Your content goes here --&gt;\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;\r\n<\/pre>\n<p>2. In your project directory, create a CSS file (styles.css) and copy the following CSS code into it. This code defines the styles and transformations needed to create various shapes.<\/p>\n<pre class=\"prettyprint linenums lang-css\">\/*\r\n * ==== Losange\r\n *\/\r\n.losange, .losange div {\r\n  margin: 0 auto;\r\n  transform-origin: 50% 50%;\r\n  overflow: hidden;\r\n  width: 250px;\r\n  height: 250px;\r\n}\r\n.losange {\r\n  transform: rotate(45deg) translateY(10px);\r\n}\r\n.losange .los1 {\r\n  width: 355px;\r\n  height: 355px;\r\n  transform: rotate(-45deg) translateY(-74px);\r\n}\r\n.losange .los1 img {\r\n  width: 100%;\r\n  height: auto;\r\n}\r\n\r\n\/*\r\n * ==== diamond \r\n *\/\r\n\r\n.diamond, .dia {\r\n  margin: 0 auto;\r\n  transform-origin: 50% 50%;\r\n  overflow: hidden;\r\n  width: 300px;\r\n  height: 300px;\r\n}\r\n.diamond {\r\n  transform: rotate(45deg) translateY(-25px) translateX(-25px);\r\n}\r\n.diamond .dia {\r\n  width: 380px;\r\n  height: 380px;\r\n  transform: rotate(-45deg);\r\n}\r\n.diamond img {\r\n  width: 100%;\r\n  height: auto;\r\n}\r\n\r\n\/* \r\n * ==== octogone\r\n *\/\r\n.octo, .octo div {\r\n  margin: 0 auto;\r\n  transform-origin: 50% 50%;\r\n  overflow: hidden;\r\n  width: 300px;\r\n  height: 300px;\r\n}\r\n.octo, .octo div {\r\n  width: 270px;\r\n  height: 270px;\r\n}\r\n.octo {\r\n  transform: rotate(45deg);\r\n}\r\n.octo1 {\r\n  transform: rotate(-45deg);\r\n}\r\n\r\n\r\n\/*\r\n * ==== hexagon\r\n *\/\r\n.hexa, .hexa div {\r\n  margin: 0 auto;\r\n  transform-origin: 50% 50%;\r\n  overflow: hidden;\r\n  width: 300px;\r\n  height: 300px;\r\n}\r\n.hexa {\r\n  width: 325px;\r\n  height: 230px;\r\n}\r\n.hexa div {\r\n  width: 100%;\r\n  height: 100%;\r\n}\r\n.hexa {\r\n  transform: rotate(120deg);\r\n}\r\n.hex1 {\r\n  transform: rotate(-60deg);\r\n}\r\n.hex2 {\r\n  transform: rotate(-60deg);\r\n}\r\n\r\n\/*\r\n * ==== dodecagon\r\n *\/\r\n.dodeca, .dodeca div {\r\n  margin: 0 auto;\r\n  transform-origin: 50% 50%;\r\n  overflow: hidden;\r\n  width: 300px;\r\n  height: 300px;\r\n}\r\n.dodeca {\r\n  transform: rotate(120deg);\r\n}\r\n.dode1 {\r\n  transform: rotate(-60deg);\r\n}\r\n.dode2 {\r\n  transform: rotate(-60deg);\r\n}\r\n\r\n\/* irregular dodecagon *\/\r\n.irr, .irr div {\r\n  width: 320px;\r\n}<\/pre>\n<p>3. Now, let&#8217;s apply these shapes to elements on your webpage. For instance, to create a diamond shape for an image, you can use the following HTML structure:<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div class=\"diamond\"&gt;\r\n&lt;div class=\"dia\"&gt;\r\n&lt;img src=\"your-image.jpg\" alt=\"Diamond Shape Image\"&gt;\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;<\/pre>\n<p>Replace <code>\"your-image.jpg\"<\/code> with the path to your image. You can use the following classes for other shapes:<\/p>\n<ol>\n<li><strong>Diamond Shape<\/strong>:\n<ul>\n<li><code>.diamond<\/code> and <code>.dia<\/code><\/li>\n<\/ul>\n<\/li>\n<li><strong>Octagon Shape<\/strong>:\n<ul>\n<li><code>.octo<\/code> and <code>.octo div<\/code><\/li>\n<\/ul>\n<\/li>\n<li><strong>Hexagon Shape<\/strong>:\n<ul>\n<li><code>.hexa<\/code> and <code>.hexa div<\/code><\/li>\n<\/ul>\n<\/li>\n<li><strong>Dodecagon Shape<\/strong>:\n<ul>\n<li><code>.dodeca<\/code> and <code>.dodeca div<\/code><\/li>\n<\/ul>\n<\/li>\n<li><strong>Irregular Dodecagon Shape<\/strong>:\n<ul>\n<li><code>.irr<\/code> and <code>.irr div<\/code><\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<p>You can customize the size and appearance of these shapes by adjusting the CSS properties like <code>width<\/code>, <code>height<\/code>, and colors. Experiment with different values to achieve the desired look.<\/p>\n<p>That&#8217;s all! hopefully, you have successfully created image shapes in CSS. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This CSS code example helps you to create various image shapes like diamonds, octagons, hexagons, and dodecagons. These shapes can&#8230;<\/p>\n","protected":false},"author":1,"featured_media":9037,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[63],"tags":[],"class_list":["post-9021","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-html5-css3"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>6+ Image Shapes in CSS with Example &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a 6+ Image Shapes in CSS with Example. 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\/html5-css3\/image-shapes-in-css-with-example\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"6+ Image Shapes in CSS with Example &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a 6+ Image Shapes in CSS with Example. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/\" \/>\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-01-19T17:58:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T10:58:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Image-Shapes-in-CSS-with-Example.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"960\" \/>\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\/html5-css3\/image-shapes-in-css-with-example\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"6+ Image Shapes in CSS with Example\",\"datePublished\":\"2024-01-19T17:58:00+00:00\",\"dateModified\":\"2024-01-22T10:58:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/\"},\"wordCount\":248,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Image-Shapes-in-CSS-with-Example.png\",\"articleSection\":[\"HTML5 &amp; CSS3\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/\",\"url\":\"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/\",\"name\":\"6+ Image Shapes in CSS with Example &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Image-Shapes-in-CSS-with-Example.png\",\"datePublished\":\"2024-01-19T17:58:00+00:00\",\"dateModified\":\"2024-01-22T10:58:59+00:00\",\"description\":\"Here is a free code snippet to create a 6+ Image Shapes in CSS with Example. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Image-Shapes-in-CSS-with-Example.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Image-Shapes-in-CSS-with-Example.png\",\"width\":1280,\"height\":960,\"caption\":\"Image Shapes in CSS with Example\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HTML5 &amp; CSS3\",\"item\":\"https:\/\/codehim.com\/category\/html5-css3\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"6+ Image Shapes in CSS with Example\"}]},{\"@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":"6+ Image Shapes in CSS with Example &#8212; CodeHim","description":"Here is a free code snippet to create a 6+ Image Shapes in CSS with Example. 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\/html5-css3\/image-shapes-in-css-with-example\/","og_locale":"en_US","og_type":"article","og_title":"6+ Image Shapes in CSS with Example &#8212; CodeHim","og_description":"Here is a free code snippet to create a 6+ Image Shapes in CSS with Example. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-19T17:58:00+00:00","article_modified_time":"2024-01-22T10:58:59+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Image-Shapes-in-CSS-with-Example.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\/html5-css3\/image-shapes-in-css-with-example\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"6+ Image Shapes in CSS with Example","datePublished":"2024-01-19T17:58:00+00:00","dateModified":"2024-01-22T10:58:59+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/"},"wordCount":248,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Image-Shapes-in-CSS-with-Example.png","articleSection":["HTML5 &amp; CSS3"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/","url":"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/","name":"6+ Image Shapes in CSS with Example &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Image-Shapes-in-CSS-with-Example.png","datePublished":"2024-01-19T17:58:00+00:00","dateModified":"2024-01-22T10:58:59+00:00","description":"Here is a free code snippet to create a 6+ Image Shapes in CSS with Example. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Image-Shapes-in-CSS-with-Example.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Image-Shapes-in-CSS-with-Example.png","width":1280,"height":960,"caption":"Image Shapes in CSS with Example"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/html5-css3\/image-shapes-in-css-with-example\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"HTML5 &amp; CSS3","item":"https:\/\/codehim.com\/category\/html5-css3\/"},{"@type":"ListItem","position":3,"name":"6+ Image Shapes in CSS with Example"}]},{"@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":2261,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9021","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=9021"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9021\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/9037"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=9021"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=9021"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=9021"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}