{"id":8687,"date":"2024-01-20T17:55:00","date_gmt":"2024-01-20T17:55:00","guid":{"rendered":"https:\/\/codehim.com\/?p=8687"},"modified":"2024-01-22T15:55:38","modified_gmt":"2024-01-22T10:55:38","slug":"bootstrap-email-subscription-form","status":"publish","type":"post","link":"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/","title":{"rendered":"Bootstrap Email Subscription Form"},"content":{"rendered":"<p>This code snippet helps you to create a stylish email subscription form for your Bootstrap projects. It comes with a responsive layout, making it suitable for various screen sizes. You just need to attach it with the backend. Then users can enter their email addresses, and with a simple click, subscribe to your updates.<\/p>\n<h2>How to Create Bootstrap Email Subscription Form<\/h2>\n<p>1. First of all, load the <a href=\"https:\/\/getbootstrap.com\/docs\/3.4\/css\/\" target=\"_blank\" rel=\"noopener\">Bootstrap 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:\/\/maxcdn.bootstrapcdn.com\/bootstrap\/3.3.7\/css\/bootstrap.min.css'&gt;<\/pre>\n<p>2. Now, create the HTML structure for our subscription form. Copy and paste the following HTML structure into your website&#8217;s HTML file where you want the subscription form to appear.\u00a0Add an action attribute to the form element and define the URL where you want to submit form data to the server.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div id=\"subscription_area\"&gt;\r\n  &lt;div class=\"container\"&gt;\r\n    &lt;div class=\"row\"&gt;\r\n      &lt;div class=\"col-sm-12\"&gt;\r\n        &lt;div class=\"subscribe_now\"&gt;\r\n          &lt;h4&gt;subscribe&lt;\/h4&gt;\r\n          &lt;p&gt;Get connected to our insights&lt;\/p&gt;\r\n          &lt;form class=\"subscribe_form\"&gt;\r\n            &lt;div class=\"input-group\"&gt;\r\n               &lt;input type=\"text\" class=\"form-control\" name=\"email\" placeholder=\"Enter your email\"&gt;\r\n               &lt;span class=\"input-group-btn\"&gt;\r\n                    &lt;button class=\"btn btn-default\" type=\"button\"&gt;subscribe&lt;\/button&gt;\r\n               &lt;\/span&gt;\r\n            &lt;\/div&gt;\r\n          &lt;\/form&gt;\r\n        &lt;\/div&gt;\r\n      &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n  &lt;\/div&gt;\r\n&lt;\/div&gt;<\/pre>\n<p>3. Add the following CSS styles to your website&#8217;s stylesheet or in a <code>&lt;style&gt;<\/code> tag in your HTML document.<\/p>\n<pre class=\"prettyprint linenums lang-css\">body {\r\n  background-color: #fbfbfb;\r\n  display: flex;\r\n  justify-content: center;\r\n  align-items: center;\r\n  height: 100vh;\r\n}\r\n\r\n.subscribe_now h4 {\r\n  font-size: 14px;\r\n  line-height: 20px;\r\n  letter-spacing: 2px;\r\n  text-transform: uppercase;\r\n  color: #34495e;\r\n  font-weight: 800;\r\n  text-align: center;\r\n}\r\n.subscribe_now p {\r\n  font-size: 14px;\r\n  line-height: 20px;\r\n  letter-spacing: 2px;\r\n  color: #34495e;\r\n  text-align: center;\r\n}\r\n\r\n.subscribe_form {\r\n  max-width: 470px;\r\n  width: 100%;\r\n  margin: 0 auto;\r\n  box-shadow: 0px 2px 5px 0px rgba(10, 6, 20, 0.24);\r\n}\r\n.subscribe_form:focus {\r\n  outline: none;\r\n}\r\n.subscribe_form .form-control {\r\n  border: none;\r\n}\r\n.subscribe_form .form-control:focus {\r\n  box-shadow: none;\r\n}\r\n.subscribe_form input {\r\n  height: 44px;\r\n}\r\n.subscribe_form button {\r\n  border: none;\r\n  height: 44px;\r\n  background-color: #0ed085;\r\n  color: #fff;\r\n  margin: -1px;\r\n  border-radius: 0;\r\n  width: 135px;\r\n  text-transform: uppercase;\r\n  position: relative;\r\n  transition: all ease 0.3s;\r\n  -webkit-transition: all ease 0.3s;\r\n  -moz-transition: all ease 0.3s;\r\n  -o-transition: all ease 0.3s;\r\n  -ms-transition: all ease 0.3s;\r\n}\r\n.subscribe_form button:hover, .subscribe_form button:focus, .subscribe_form button:active, .subscribe_form button:visited {\r\n  color: #fff;\r\n  background-color: rgba(14, 208, 133, 0.77);\r\n  outline: none;\r\n  transition: all ease 0.3s;\r\n  -webkit-transition: all ease 0.3s;\r\n  -moz-transition: all ease 0.3s;\r\n  -o-transition: all ease 0.3s;\r\n  -ms-transition: all ease 0.3s;\r\n}\r\n.subscribe_form button:hover:before, .subscribe_form button:focus:before, .subscribe_form button:active:before, .subscribe_form button:visited:before {\r\n  background-color: rgba(14, 208, 133, 0.77);\r\n  transition: all ease 0.3s;\r\n  -webkit-transition: all ease 0.3s;\r\n  -moz-transition: all ease 0.3s;\r\n  -o-transition: all ease 0.3s;\r\n  -ms-transition: all ease 0.3s;\r\n}\r\n.subscribe_form button:before {\r\n  content: \"\";\r\n  position: absolute;\r\n  top: 100%;\r\n  left: 0;\r\n  height: 1px;\r\n  background-color: #0ed085;\r\n  width: 100%;\r\n  transition: all ease 0.3s;\r\n  -webkit-transition: all ease 0.3s;\r\n  -moz-transition: all ease 0.3s;\r\n  -o-transition: all ease 0.3s;\r\n  -ms-transition: all ease 0.3s;\r\n}\r\n.subscribe_form .input-group-btn:last-child &gt; .btn, .subscribe_form .input-group-btn:last-child &gt; .btn-group {\r\n  z-index: 2;\r\n  margin-left: 0px;\r\n}<\/pre>\n<p>Feel free to customize the form&#8217;s appearance and content to match your website&#8217;s design and branding. You can modify colors, fonts, and other styles in the CSS code to make it unique to your site.<\/p>\n<p>That&#8217;s it! Hopefully, you&#8217;ve successfully implemented a Bootstrap Email Subscription Form on your website. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code snippet helps you to create a stylish email subscription form for your Bootstrap projects. It comes with a&#8230;<\/p>\n","protected":false},"author":1,"featured_media":8695,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[123,232],"tags":[],"class_list":["post-8687","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bootstrap","category-forms"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Bootstrap Email Subscription Form &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Bootstrap Email Subscription Form. 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\/bootstrap-email-subscription-form\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Bootstrap Email Subscription Form &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Bootstrap Email Subscription Form. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/\" \/>\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-20T17:55:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T10:55:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-Email-Subscription-Form.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=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Bootstrap Email Subscription Form\",\"datePublished\":\"2024-01-20T17:55:00+00:00\",\"dateModified\":\"2024-01-22T10:55:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/\"},\"wordCount\":221,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-Email-Subscription-Form.png\",\"articleSection\":[\"Bootstrap\",\"Forms\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/\",\"url\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/\",\"name\":\"Bootstrap Email Subscription Form &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-Email-Subscription-Form.png\",\"datePublished\":\"2024-01-20T17:55:00+00:00\",\"dateModified\":\"2024-01-22T10:55:38+00:00\",\"description\":\"Here is a free code snippet to create a Bootstrap Email Subscription Form. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-Email-Subscription-Form.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-Email-Subscription-Form.png\",\"width\":1280,\"height\":960,\"caption\":\"Bootstrap Email Subscription Form\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/#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\":\"Bootstrap Email Subscription Form\"}]},{\"@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":"Bootstrap Email Subscription Form &#8212; CodeHim","description":"Here is a free code snippet to create a Bootstrap Email Subscription Form. 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\/bootstrap-email-subscription-form\/","og_locale":"en_US","og_type":"article","og_title":"Bootstrap Email Subscription Form &#8212; CodeHim","og_description":"Here is a free code snippet to create a Bootstrap Email Subscription Form. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-20T17:55:00+00:00","article_modified_time":"2024-01-22T10:55:38+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-Email-Subscription-Form.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":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Bootstrap Email Subscription Form","datePublished":"2024-01-20T17:55:00+00:00","dateModified":"2024-01-22T10:55:38+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/"},"wordCount":221,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-Email-Subscription-Form.png","articleSection":["Bootstrap","Forms"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/","url":"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/","name":"Bootstrap Email Subscription Form &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-Email-Subscription-Form.png","datePublished":"2024-01-20T17:55:00+00:00","dateModified":"2024-01-22T10:55:38+00:00","description":"Here is a free code snippet to create a Bootstrap Email Subscription Form. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-Email-Subscription-Form.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-Email-Subscription-Form.png","width":1280,"height":960,"caption":"Bootstrap Email Subscription Form"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-email-subscription-form\/#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":"Bootstrap Email Subscription Form"}]},{"@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":1863,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/8687","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=8687"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/8687\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/8695"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=8687"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=8687"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=8687"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}