{"id":9018,"date":"2024-01-19T17:58:00","date_gmt":"2024-01-19T17:58:00","guid":{"rendered":"https:\/\/codehim.com\/?p=9018"},"modified":"2024-01-22T15:58:57","modified_gmt":"2024-01-22T10:58:57","slug":"css-background-texture-without-image","status":"publish","type":"post","link":"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/","title":{"rendered":"10+ CSS Background Texture without Image"},"content":{"rendered":"<p>This code generates CSS background texture without using image. It employs various CSS techniques to create different patterns, like stripes, gradients, and dotted designs, for enhancing webpage design.<\/p>\n<p>You can easily integrate these CSS3 patterns for a specific block or entire page. Create appealing backgrounds without image loading, reducing webpage load times. Achieve diverse designs, from stripes to gradients, and improve user experience.<\/p>\n<h2>How to Create CSS Background Texture without Using Image<\/h2>\n<p>1. First, include the necessary external resources for <a href=\"https:\/\/necolas.github.io\/normalize.css\/\" target=\"_blank\" rel=\"noopener\">CSS normalization<\/a> and prefixing in the <code>&lt;head&gt;<\/code> section of your HTML document.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/normalize\/5.0.0\/normalize.min.css\"&gt;\r\n&lt;script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/prefixfree\/1.0.7\/prefixfree.min.js\"&gt;&lt;\/script&gt;<\/pre>\n<p>2. Define the structure of your webpage using <code>&lt;div&gt;<\/code> elements. Each <code>&lt;div&gt;<\/code> represents a block that we&#8217;ll apply our CSS backgrounds to.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div class=\"block block-stripes\"&gt;&lt;p&gt;.block-stripes&lt;\/div&gt;\r\n\r\n&lt;div class=\"block block-store\"&gt;&lt;p&gt;.block-store&lt;\/div&gt;\r\n\r\n&lt;div class=\"block block-demo\"&gt;&lt;p&gt;.block-store&lt;\/div&gt;\r\n\r\n&lt;div class=\"block block-gradiant\"&gt;&lt;p&gt;.block-gradiant&lt;\/div&gt;\r\n\r\n&lt;div class=\"block block-toright\"&gt;&lt;p&gt;.block-toright&lt;\/div&gt;\r\n\r\n&lt;div class=\"block block-dotted\"&gt;&lt;p&gt;.block-dotted&lt;\/div&gt;\r\n\r\n&lt;div class=\"block block-dotted-small\"&gt;&lt;p&gt;.block-dotted-small&lt;\/div&gt;\r\n\r\n&lt;div class=\"block block-scale\"&gt;&lt;p&gt;.block-scale&lt;\/div&gt;\r\n\r\n&lt;div class=\"block block-cadrillage\"&gt;&lt;p&gt;.block-cadrillage&lt;\/div&gt;\r\n\r\n&lt;div class=\"block block-crosshatch\"&gt;&lt;p&gt;.block-crosshatch&lt;\/div&gt;\r\n\r\n&lt;div class=\"block block-little-circle\"&gt;&lt;p&gt;.block-little-circle&lt;\/div&gt;<\/pre>\n<p>2. Open your CSS file or include a <code>&lt;style&gt;<\/code> block in your HTML document&#8217;s <code>&lt;head&gt;<\/code>. To set a background for the entire page, target the <code>&lt;body&gt;<\/code> element.<\/p>\n<pre class=\"prettyprint linenums lang-css\">.block {\r\n  width: 300px;\r\n  height: 300px;\r\n  border-radius: 5px;\r\n  border: 1px solid #ccc;\r\n  margin: 20px;\r\n  padding: 25px;\r\n  display: inline-block;\r\n}\r\n.block p {\r\n  background-color: #fff;\r\n  color: #000;\r\n  padding: 4px;\r\n  font-size: 12px;\r\n  font-familly: Arial, sans-serif;\r\n}\r\n.block-stripes {\r\n  background-image: repeating-linear-gradient(-55deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 5px, rgba(0, 0, 0, 0.1) 5px, rgba(0, 0, 0, 0.1) 10px);\r\n}\r\n.block-store {\r\n  background-image: repeating-linear-gradient(180deg, #ccc, #bdbdbd, #969696 5%);\r\n}\r\n.block-demo {\r\n  background-color: #e5f4f7;\r\n  background-image: repeating-linear-gradient(-45deg, transparent, transparent 25px, #216b8a 25px, #2fb0e7 50px);\r\n}\r\n.block-gradiant {\r\n  background-image: linear-gradient(0deg, #34495e 7%, #16a085 100%);\r\n}\r\n.block-toright {\r\n  background-image: repeating-linear-gradient(to right, #f6ba52, #f6ba52 10px, #ffd180 10px, #ffd180 20px);\r\n}\r\n.block-dotted {\r\n  background: radial-gradient(circle, purple, purple 50%, #4b026f 50%, #4b026f);\r\n  background-size: 20px 20px;\r\n}\r\n.block-dotted-small {\r\n  background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);\r\n  background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);\r\n  background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);\r\n  background-size: 3px 3px;\r\n}\r\n.block-scale {\r\n  color: white;\r\n  background: linear-gradient(45deg, #5d9634, #5d9634 10%, #538c2b 60%, #538c2b);\r\n  background-size: 20px 10px;\r\n}\r\n.block-cadrillage {\r\n  background-color: #269;\r\n  background-image: linear-gradient(rgba(255, 255, 255, 0.4), transparent 2px), linear-gradient(90deg, rgba(255, 255, 255, 0.4), transparent 2px), linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);\r\n  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;\r\n  background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;\r\n}\r\n.block-crosshatch {\r\n  background-color: #161616;\r\n  background-image: repeating-linear-gradient(135deg, #333, #333 10%, transparent 10%, transparent 50%), repeating-linear-gradient(-135deg, #333, #333 10%, transparent 10%, transparent 50%);\r\n  background-size: 12px 12px;\r\n}\r\n.block-little-circle {\r\n  background-color: #2c3e50;\r\n  background-image: repeating-radial-gradient(circle, #34495e, #34495e 45%, transparent 45%, transparent 60%, #34495e 60%, #34495e 100%);\r\n  background-size: 10px 10px;\r\n}<\/pre>\n<p>Now, you can apply different textures to your blocks by assigning CSS classes to them. Here are some examples:<\/p>\n<ul>\n<li>Stripes: <code>.block-stripes<\/code><\/li>\n<li>Gradient: <code>.block-gradiant<\/code><\/li>\n<li>Dotted: <code>.block-dotted<\/code><\/li>\n<\/ul>\n<p>If you want to apply the background texture to the entire webpage by targeting the <code>&lt;body&gt;<\/code> element in your CSS. Add the CSS code for the desired texture, as follows:<\/p>\n<pre class=\"prettyprint linenums lang-css\">body {\r\n  background-image: repeating-linear-gradient(-55deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 5px, rgba(0, 0, 0, 0.1) 5px, rgba(0, 0, 0, 0.1) 10px);\r\n  \/* Add other CSS properties for your background as needed *\/\r\n}\r\n<\/pre>\n<p>That&#8217;s all! hopefully, you have successfully created CSS background Texture Without an Image. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code generates CSS background texture without using image. It employs various CSS techniques to create different patterns, like stripes,&#8230;<\/p>\n","protected":false},"author":1,"featured_media":9031,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[63],"tags":[],"class_list":["post-9018","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>10+ CSS Background Texture without Image &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a 10+ CSS Background Texture without Image. 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\/css-background-texture-without-image\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"10+ CSS Background Texture without Image &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a 10+ CSS Background Texture without Image. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/\" \/>\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:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/CSS-Background-Texture-without-Image.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\/html5-css3\/css-background-texture-without-image\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"10+ CSS Background Texture without Image\",\"datePublished\":\"2024-01-19T17:58:00+00:00\",\"dateModified\":\"2024-01-22T10:58:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/\"},\"wordCount\":216,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/CSS-Background-Texture-without-Image.png\",\"articleSection\":[\"HTML5 &amp; CSS3\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/\",\"url\":\"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/\",\"name\":\"10+ CSS Background Texture without Image &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/CSS-Background-Texture-without-Image.png\",\"datePublished\":\"2024-01-19T17:58:00+00:00\",\"dateModified\":\"2024-01-22T10:58:57+00:00\",\"description\":\"Here is a free code snippet to create a 10+ CSS Background Texture without Image. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/CSS-Background-Texture-without-Image.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/CSS-Background-Texture-without-Image.png\",\"width\":1280,\"height\":960,\"caption\":\"CSS Background Texture without Image\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/#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\":\"10+ CSS Background Texture without Image\"}]},{\"@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":"10+ CSS Background Texture without Image &#8212; CodeHim","description":"Here is a free code snippet to create a 10+ CSS Background Texture without Image. 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\/css-background-texture-without-image\/","og_locale":"en_US","og_type":"article","og_title":"10+ CSS Background Texture without Image &#8212; CodeHim","og_description":"Here is a free code snippet to create a 10+ CSS Background Texture without Image. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/","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:57+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/CSS-Background-Texture-without-Image.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\/html5-css3\/css-background-texture-without-image\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"10+ CSS Background Texture without Image","datePublished":"2024-01-19T17:58:00+00:00","dateModified":"2024-01-22T10:58:57+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/"},"wordCount":216,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/CSS-Background-Texture-without-Image.png","articleSection":["HTML5 &amp; CSS3"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/","url":"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/","name":"10+ CSS Background Texture without Image &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/CSS-Background-Texture-without-Image.png","datePublished":"2024-01-19T17:58:00+00:00","dateModified":"2024-01-22T10:58:57+00:00","description":"Here is a free code snippet to create a 10+ CSS Background Texture without Image. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/CSS-Background-Texture-without-Image.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/CSS-Background-Texture-without-Image.png","width":1280,"height":960,"caption":"CSS Background Texture without Image"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/html5-css3\/css-background-texture-without-image\/#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":"10+ CSS Background Texture without Image"}]},{"@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":1887,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9018","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=9018"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9018\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/9031"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=9018"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=9018"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=9018"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}