{"id":4008,"date":"2024-01-17T17:02:00","date_gmt":"2024-01-17T17:02:00","guid":{"rendered":"https:\/\/codehim.com\/?p=4008"},"modified":"2024-01-22T15:07:17","modified_gmt":"2024-01-22T10:07:17","slug":"pure-css-horizontal-dropdown-menu","status":"publish","type":"post","link":"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/","title":{"rendered":"Pure CSS Horizontal Dropdown Menu"},"content":{"rendered":"<p>Yet another ultra-lightweight (less than 1KB), dependency-free pure CSS horizontal dropdown menu for non-JavaScript web projects. This menu also supports a multilevel (nested ul li) dropdown. You can easily integrate it as it doesn&#8217;t require any external library.<br \/>\nThe dropdown menu is fully customizable with additional CSS.<\/p>\n<h2>How to Make Pure CSS Horizontal Dropdown Menu<\/h2>\n<p>1. First of all create a markup structure for the dropdown menu as follows:<\/p>\n<pre class=\"prettyprint lang-html\">&lt;div class=\"wrapper\"&gt;\r\n   &lt;div class=\"navigationDesktop\"&gt;\r\n      &lt;nav&gt;\r\n         &lt;ul&gt;\r\n            &lt;li&gt;\r\n               &lt;a href=\"#\"&gt;Programming&lt;\/a&gt;\r\n               &lt;ul&gt;\r\n                  &lt;li&gt;&lt;a href=\"#\"&gt;C++&lt;\/a&gt;&lt;\/li&gt;\r\n                  &lt;li&gt;&lt;a href=\"#\"&gt;C#&lt;\/a&gt;&lt;\/li&gt;\r\n                  &lt;li&gt;&lt;a href=\"#\"&gt;Java&lt;\/a&gt;&lt;\/li&gt;\r\n                  &lt;li&gt;\r\n                     &lt;a href=\"#\"&gt;Web Development&lt;\/a&gt;\r\n                     &lt;ul&gt;\r\n                        &lt;li&gt;&lt;a href=\"#\"&gt;Javascript&lt;\/a&gt;&lt;\/li&gt;\r\n                        &lt;li&gt;&lt;a href=\"#\"&gt;PHP&lt;\/a&gt;&lt;\/li&gt;\r\n                        &lt;li&gt;&lt;a href=\"#\"&gt;Ruby&lt;\/a&gt;&lt;\/li&gt;\r\n                     &lt;\/ul&gt;\r\n                  &lt;\/li&gt;\r\n                  &lt;li&gt;&lt;a href=\"#\"&gt;Python&lt;\/a&gt;&lt;\/li&gt;\r\n               &lt;\/ul&gt;\r\n            &lt;\/li&gt;\r\n            &lt;li&gt;\r\n               &lt;a href=\"#\"&gt;OS&lt;\/a&gt;\r\n               &lt;ul&gt;\r\n                  &lt;li&gt;&lt;a href=\"#\"&gt;Windows&lt;\/a&gt;&lt;\/li&gt;\r\n                  &lt;li&gt;&lt;a href=\"#\"&gt;Macintosh&lt;\/a&gt;&lt;\/li&gt;\r\n                  &lt;li&gt;&lt;a href=\"#\"&gt;Linux&lt;\/a&gt;&lt;\/li&gt;\r\n               &lt;\/ul&gt;\r\n            &lt;\/li&gt;\r\n            &lt;li&gt;\r\n               &lt;a href=\"#\"&gt;Projects&lt;\/a&gt;\r\n               &lt;ul&gt;\r\n                  &lt;li&gt;&lt;a href=\"#\"&gt;Android&lt;\/a&gt;&lt;\/li&gt;\r\n                  &lt;li&gt;&lt;a href=\"#\"&gt;iOS&lt;\/a&gt;&lt;\/li&gt;\r\n                  &lt;li&gt;&lt;a href=\"#\"&gt;Web&lt;\/a&gt;&lt;\/li&gt;\r\n                  &lt;li&gt;&lt;a href=\"#\"&gt;Windows&lt;\/a&gt;&lt;\/li&gt;\r\n               &lt;\/ul&gt;\r\n            &lt;\/li&gt;\r\n            &lt;li&gt;&lt;a href=\"about.html\"&gt;About&lt;\/a&gt;&lt;\/li&gt;\r\n         &lt;\/ul&gt;\r\n      &lt;\/nav&gt;\r\n   &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n<\/pre>\n<p>2. Now, style your horizontal dropdown menu with CSS. You can add menu CSS file into your HTML document after downloading this menu.<\/p>\n<pre class=\"prettyprint lang-html\">&lt;!-- Dropdown Menu CSS --&gt;\r\n&lt;link rel=\"stylesheet\" href=\"css\/dropdown-menu.css\" type=\"text\/css\"&gt;\r\n<\/pre>\n<p>3. If you want to use inline styles, use the following CSS.<\/p>\n<pre class=\"prettyprint lang-css\">.wrapper {\r\n\tmin-height: calc(100vh - 70px);\r\n\twidth: 100%;\r\n\tposition: relative;\r\n}\r\n\r\n.navigationDesktop {\r\n\tbackground: #fc575e;\r\n}\r\n\r\nnav {\r\n\theight: 40px;\r\n\twidth: 560px;\r\n\tmargin: 0 auto;\r\n\ttext-align: center;\r\n\ttext-transform: uppercase;\r\n}\r\n\r\nnav a {\r\n\tdisplay: block;\r\n\ttext-decoration: none;\r\n\tfont-family: monospace;\r\n\tfont-weight: bold;\r\n\tfont-size: 13pt;\r\n\tcolor: #112233;\r\n}\r\n\r\nnav a:hover {\r\n\tbackground: #223433;\r\n\tcolor: #f0f1f5;\r\n}\r\n\r\nnav ul {\r\n\tlist-style: none;\r\n}\r\n\r\nnav ul li {\r\n\tfloat: left;\r\n\twidth: 140px;\r\n\theight: 40px;\r\n\tline-height: 40px;\r\n\tbackground: #fc575e;\r\n}\r\n\r\nnav ul ul li {\r\n\tposition: relative;\r\n\tdisplay: none;\r\n}\r\n\r\nnav ul ul ul {\r\n\tdisplay: none;\r\n}\r\n\r\nnav ul li:hover ul li {\r\n\tdisplay: block;\r\n\tanimation: navmenu 500ms forwards;\r\n}\r\n\r\n@keyframes navmenu {\r\n\t0% {\r\n\t\topacity: 0;\r\n\t\ttop: 5px;\r\n\t}\r\n\t100% {\r\n\t\topacity: 1;\r\n\t\ttop: 0px;\r\n\t}\r\n}\r\n\r\nnav ul ul li:hover ul {\r\n\tdisplay: block;\r\n\tposition: absolute;\r\n\twidth: 140px;\r\n\tleft: 140px;\r\n\ttop: 0px;\r\n}\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Yet another ultra-lightweight (less than 1KB), dependency-free pure CSS horizontal dropdown menu for non-JavaScript web projects. This menu also supports&#8230;<\/p>\n","protected":false},"author":1,"featured_media":4010,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[38],"tags":[9,15],"class_list":["post-4008","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-menu","tag-dropdown-menu","tag-horizontal-menu"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pure CSS Horizontal Dropdown Menu &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a ultra lightweight pure CSS horizontal dropdown menu for non-JavaScript web projects. It is created with HTML and CSS with animations.\" \/>\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\/menu\/pure-css-horizontal-dropdown-menu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pure CSS Horizontal Dropdown Menu &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a ultra lightweight pure CSS horizontal dropdown menu for non-JavaScript web projects. It is created with HTML and CSS with animations.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/\" \/>\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-17T17:02:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T10:07:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/css-dropdown-menu-codehim.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"962\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\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\/menu\/pure-css-horizontal-dropdown-menu\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Pure CSS Horizontal Dropdown Menu\",\"datePublished\":\"2024-01-17T17:02:00+00:00\",\"dateModified\":\"2024-01-22T10:07:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/\"},\"wordCount\":107,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/css-dropdown-menu-codehim.jpg\",\"keywords\":[\"Dropdown Menu\",\"Horizontal Menu\"],\"articleSection\":[\"Menu &amp; Nav\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/\",\"url\":\"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/\",\"name\":\"Pure CSS Horizontal Dropdown Menu &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/css-dropdown-menu-codehim.jpg\",\"datePublished\":\"2024-01-17T17:02:00+00:00\",\"dateModified\":\"2024-01-22T10:07:17+00:00\",\"description\":\"Here is a ultra lightweight pure CSS horizontal dropdown menu for non-JavaScript web projects. It is created with HTML and CSS with animations.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/css-dropdown-menu-codehim.jpg\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/css-dropdown-menu-codehim.jpg\",\"width\":1280,\"height\":962,\"caption\":\"Pure CSS Horizontal Dropdown Menu\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Menu &amp; Nav\",\"item\":\"https:\/\/codehim.com\/category\/menu\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Pure CSS Horizontal Dropdown Menu\"}]},{\"@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":"Pure CSS Horizontal Dropdown Menu &#8212; CodeHim","description":"Here is a ultra lightweight pure CSS horizontal dropdown menu for non-JavaScript web projects. It is created with HTML and CSS with animations.","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\/menu\/pure-css-horizontal-dropdown-menu\/","og_locale":"en_US","og_type":"article","og_title":"Pure CSS Horizontal Dropdown Menu &#8212; CodeHim","og_description":"Here is a ultra lightweight pure CSS horizontal dropdown menu for non-JavaScript web projects. It is created with HTML and CSS with animations.","og_url":"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-17T17:02:00+00:00","article_modified_time":"2024-01-22T10:07:17+00:00","og_image":[{"width":1280,"height":962,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/css-dropdown-menu-codehim.jpg","type":"image\/jpeg"}],"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\/menu\/pure-css-horizontal-dropdown-menu\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Pure CSS Horizontal Dropdown Menu","datePublished":"2024-01-17T17:02:00+00:00","dateModified":"2024-01-22T10:07:17+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/"},"wordCount":107,"commentCount":1,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/css-dropdown-menu-codehim.jpg","keywords":["Dropdown Menu","Horizontal Menu"],"articleSection":["Menu &amp; Nav"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/","url":"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/","name":"Pure CSS Horizontal Dropdown Menu &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/css-dropdown-menu-codehim.jpg","datePublished":"2024-01-17T17:02:00+00:00","dateModified":"2024-01-22T10:07:17+00:00","description":"Here is a ultra lightweight pure CSS horizontal dropdown menu for non-JavaScript web projects. It is created with HTML and CSS with animations.","breadcrumb":{"@id":"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/css-dropdown-menu-codehim.jpg","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/css-dropdown-menu-codehim.jpg","width":1280,"height":962,"caption":"Pure CSS Horizontal Dropdown Menu"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/menu\/pure-css-horizontal-dropdown-menu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Menu &amp; Nav","item":"https:\/\/codehim.com\/category\/menu\/"},{"@type":"ListItem","position":3,"name":"Pure CSS Horizontal Dropdown Menu"}]},{"@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":10280,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/4008","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=4008"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/4008\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/4010"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=4008"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=4008"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=4008"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}