{"id":8368,"date":"2024-01-11T17:50:00","date_gmt":"2024-01-11T17:50:00","guid":{"rendered":"https:\/\/codehim.com\/?p=8368"},"modified":"2024-01-22T15:51:36","modified_gmt":"2024-01-22T10:51:36","slug":"registration-successful-message-example-in-html","status":"publish","type":"post","link":"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/","title":{"rendered":"Registration Successful Message Example in HTML"},"content":{"rendered":"<p>This code snippet demonstrates a simple HTML and CSS implementation to display a registration success message to users. When a user successfully registers on a website or application, this code can be used to show a visually appealing message with a green checkmark and the word &#8220;Success&#8221; at the top, along with a congratulatory message below it.<\/p>\n<p>Moreover, the design is presented in a card format with a <a href=\"https:\/\/codehim.com\/animation-effects\/animated-website-background-with-html5\/\" target=\"_blank\" rel=\"noopener\">gradient background<\/a>. Additionally, the &#8220;Continue&#8221; button at the bottom allows users to proceed to the next step or action.<\/p>\n<p>Furthermore, the CSS styles used here create smooth transitions and shadow effects for better visual appeal. Consequently, this code is helpful for developers who want to enhance user experience by providing clear and positive feedback after a successful registration process.<\/p>\n<h2>How to Create Registration Successful Message Box<\/h2>\n<p>1. First of all, load the <a href=\"https:\/\/fontawesome.com\/v4\/\" target=\"_blank\" rel=\"noopener\">Font Awesome CSS<\/a> (for icons) and <a href=\"https:\/\/animate.style\/\" target=\"_blank\" rel=\"noopener\">Animate CSS<\/a> by adding the following CDN links into the head tag of your HTML project.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;link rel=\"stylesheet\" href=\"https:\/\/maxcdn.bootstrapcdn.com\/font-awesome\/4.5.0\/css\/font-awesome.min.css\"&gt;\r\n&lt;link rel='stylesheet' href='\/\/cdnjs.cloudflare.com\/ajax\/libs\/animate.css\/3.2.3\/animate.min.css'&gt;\r\n<\/pre>\n<p>2. Create the HTML structure for the success message box as follows:<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div id='card' class=\"animated fadeIn\"&gt;\r\n  &lt;div id='upper-side'&gt;\r\n    &lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\r\n      &lt;!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  --&gt;\r\n      &lt;!DOCTYPE svg PUBLIC \"-\/\/W3C\/\/DTD SVG 1.1\/\/EN\" \"http:\/\/www.w3.org\/Graphics\/SVG\/1.1\/DTD\/svg11.dtd\"&gt;\r\n      &lt;svg version=\"1.1\" id=\"checkmark\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" xml:space=\"preserve\"&gt;\r\n        &lt;path d=\"M131.583,92.152l-0.026-0.041c-0.713-1.118-2.197-1.447-3.316-0.734l-31.782,20.257l-4.74-12.65\r\n\tc-0.483-1.29-1.882-1.958-3.124-1.493l-0.045,0.017c-1.242,0.465-1.857,1.888-1.374,3.178l5.763,15.382\r\n\tc0.131,0.351,0.334,0.65,0.579,0.898c0.028,0.029,0.06,0.052,0.089,0.08c0.08,0.073,0.159,0.147,0.246,0.209\r\n\tc0.071,0.051,0.147,0.091,0.222,0.133c0.058,0.033,0.115,0.069,0.175,0.097c0.081,0.037,0.165,0.063,0.249,0.091\r\n\tc0.065,0.022,0.128,0.047,0.195,0.063c0.079,0.019,0.159,0.026,0.239,0.037c0.074,0.01,0.147,0.024,0.221,0.027\r\n\tc0.097,0.004,0.194-0.006,0.292-0.014c0.055-0.005,0.109-0.003,0.163-0.012c0.323-0.048,0.641-0.16,0.933-0.346l34.305-21.865\r\n\tC131.967,94.755,132.296,93.271,131.583,92.152z\" \/&gt;\r\n        &lt;circle fill=\"none\" stroke=\"#ffffff\" stroke-width=\"5\" stroke-miterlimit=\"10\" cx=\"109.486\" cy=\"104.353\" r=\"32.53\" \/&gt;\r\n      &lt;\/svg&gt;\r\n      &lt;h3 id='status'&gt;\r\n      Success\r\n    &lt;\/h3&gt;\r\n  &lt;\/div&gt;\r\n  &lt;div id='lower-side'&gt;\r\n    &lt;p id='message'&gt;\r\n      Congratulations, your account has been successfully created.\r\n    &lt;\/p&gt;\r\n    &lt;a href=\"#\" id=\"contBtn\"&gt;Continue&lt;\/a&gt;\r\n  &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n<\/pre>\n<p>2. Use the following CSS code to style the message card. Feel free to modify the CSS rules to customize the success message according to your needs.<\/p>\n<pre class=\"prettyprint linenums lang-css\">#card {\r\n  position: relative;\r\n  top: 20px;\r\n  width: 320px;\r\n  display: block;\r\n  margin: auto;\r\n  text-align: center;\r\n  font-family: 'Source Sans Pro', sans-serif;\r\n}\r\n\r\n#upper-side {\r\n  padding: 2em;\r\n  background-color: #8BC34A;\r\n  display: block;\r\n  color: #fff;\r\n  border-top-right-radius: 8px;\r\n  border-top-left-radius: 8px;\r\n}\r\n\r\n#checkmark {\r\n  font-weight: lighter;\r\n  fill: #fff;\r\n  margin: -3.5em auto auto 20px;\r\n}\r\n\r\n#status {\r\n  font-weight: lighter;\r\n  text-transform: uppercase;\r\n  letter-spacing: 2px;\r\n  font-size: 1em;\r\n  margin-top: -.2em;\r\n  margin-bottom: 0;\r\n}\r\n\r\n#lower-side {\r\n  padding: 2em 2em 5em 2em;\r\n  background: #fff;\r\n  display: block;\r\n  border-bottom-right-radius: 8px;\r\n  border-bottom-left-radius: 8px;\r\n}\r\n\r\n#message {\r\n  margin-top: -.5em;\r\n  color: #757575;\r\n  letter-spacing: 1px;\r\n}\r\n\r\n#contBtn {\r\n  position: relative;\r\n  top: 1.5em;\r\n  text-decoration: none;\r\n  background: #8bc34a;\r\n  color: #fff;\r\n  margin: auto;\r\n  padding: .8em 3em;\r\n  -webkit-box-shadow: 0px 15px 30px rgba(50, 50, 50, 0.21);\r\n  -moz-box-shadow: 0px 15px 30px rgba(50, 50, 50, 0.21);\r\n  box-shadow: 0px 15px 30px rgba(50, 50, 50, 0.21);\r\n  border-radius: 25px;\r\n  -webkit-transition: all .4s ease;\r\n\t\t-moz-transition: all .4s ease;\r\n\t\t-o-transition: all .4s ease;\r\n\t\ttransition: all .4s ease;\r\n}\r\n\r\n#contBtn:hover {\r\n  -webkit-box-shadow: 0px 15px 30px rgba(50, 50, 50, 0.41);\r\n  -moz-box-shadow: 0px 15px 30px rgba(50, 50, 50, 0.41);\r\n  box-shadow: 0px 15px 30px rgba(50, 50, 50, 0.41);\r\n  -webkit-transition: all .4s ease;\r\n\t\t-moz-transition: all .4s ease;\r\n\t\t-o-transition: all .4s ease;\r\n\t\ttransition: all .4s ease;\r\n}<\/pre>\n<p>That&#8217;s all! hopefully, you have successfully integrated this HTML &amp; CSS code example to create a registration successful message box. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code snippet demonstrates a simple HTML and CSS implementation to display a registration success message to users. When a&#8230;<\/p>\n","protected":false},"author":1,"featured_media":8376,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[97],"tags":[],"class_list":["post-8368","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-text-input"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Registration Successful Message Example in HTML &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free HTML &amp; CSS code example to create a registration successful message box. You can view demo and download 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\/text-input\/registration-successful-message-example-in-html\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Registration Successful Message Example in HTML &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free HTML &amp; CSS code example to create a registration successful message box. You can view demo and download source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/\" \/>\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-11T17:50:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T10:51:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/07\/Registration-Successful-Message-Example-In-HTML.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\/text-input\/registration-successful-message-example-in-html\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Registration Successful Message Example in HTML\",\"datePublished\":\"2024-01-11T17:50:00+00:00\",\"dateModified\":\"2024-01-22T10:51:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/\"},\"wordCount\":237,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/07\/Registration-Successful-Message-Example-In-HTML.png\",\"articleSection\":[\"Text &amp; Input\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/\",\"url\":\"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/\",\"name\":\"Registration Successful Message Example in HTML &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/07\/Registration-Successful-Message-Example-In-HTML.png\",\"datePublished\":\"2024-01-11T17:50:00+00:00\",\"dateModified\":\"2024-01-22T10:51:36+00:00\",\"description\":\"Here is a free HTML & CSS code example to create a registration successful message box. You can view demo and download source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/07\/Registration-Successful-Message-Example-In-HTML.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/07\/Registration-Successful-Message-Example-In-HTML.png\",\"width\":1280,\"height\":960,\"caption\":\"Registration Successful Message Example In HTML\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Text &amp; Input\",\"item\":\"https:\/\/codehim.com\/category\/text-input\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Registration Successful Message Example in HTML\"}]},{\"@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":"Registration Successful Message Example in HTML &#8212; CodeHim","description":"Here is a free HTML & CSS code example to create a registration successful message box. You can view demo and download 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\/text-input\/registration-successful-message-example-in-html\/","og_locale":"en_US","og_type":"article","og_title":"Registration Successful Message Example in HTML &#8212; CodeHim","og_description":"Here is a free HTML & CSS code example to create a registration successful message box. You can view demo and download source code.","og_url":"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-11T17:50:00+00:00","article_modified_time":"2024-01-22T10:51:36+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/07\/Registration-Successful-Message-Example-In-HTML.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\/text-input\/registration-successful-message-example-in-html\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Registration Successful Message Example in HTML","datePublished":"2024-01-11T17:50:00+00:00","dateModified":"2024-01-22T10:51:36+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/"},"wordCount":237,"commentCount":1,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/07\/Registration-Successful-Message-Example-In-HTML.png","articleSection":["Text &amp; Input"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/","url":"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/","name":"Registration Successful Message Example in HTML &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/07\/Registration-Successful-Message-Example-In-HTML.png","datePublished":"2024-01-11T17:50:00+00:00","dateModified":"2024-01-22T10:51:36+00:00","description":"Here is a free HTML & CSS code example to create a registration successful message box. You can view demo and download source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/07\/Registration-Successful-Message-Example-In-HTML.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/07\/Registration-Successful-Message-Example-In-HTML.png","width":1280,"height":960,"caption":"Registration Successful Message Example In HTML"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/text-input\/registration-successful-message-example-in-html\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Text &amp; Input","item":"https:\/\/codehim.com\/category\/text-input\/"},{"@type":"ListItem","position":3,"name":"Registration Successful Message Example in HTML"}]},{"@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":10548,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/8368","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=8368"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/8368\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/8376"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=8368"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=8368"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=8368"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}