{"id":9025,"date":"2024-01-19T17:58:00","date_gmt":"2024-01-19T17:58:00","guid":{"rendered":"https:\/\/codehim.com\/?p=9025"},"modified":"2024-01-22T15:59:03","modified_gmt":"2024-01-22T10:59:03","slug":"word-cloud-html-css-code","status":"publish","type":"post","link":"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/","title":{"rendered":"Word Cloud HTML CSS Code"},"content":{"rendered":"<p>This HTML and CSS code helps you to create a word cloud. It uses CSS transformations to style each keyword uniquely, making it helpful for showcasing your special words in a creative way.<\/p>\n<p>You can integrate this code into your project to make tags cloud. Furthermore, you can customize the cloud by modifying CSS rules according to your needs.<\/p>\n<h2>How to Create Word Cloud in HTML and CSS<\/h2>\n<p>1. In your HTML file, start by creating an unordered list (<code>&lt;ul&gt;<\/code>) with list items (<code>&lt;li&gt;<\/code>) for each keyword you want to include in your word cloud. Each list item should have a class corresponding to the keyword it represents. Here&#8217;s an example:<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;ul id=\"techList\"&gt;\r\n  &lt;li class=\"html5\"&gt;html5&lt;\/li&gt;\r\n  &lt;li class=\"css3\"&gt;css3&lt;\/li&gt;\r\n  &lt;li class=\"javascript\"&gt;javascript&lt;\/li&gt;\r\n  &lt;li class=\"jquery\"&gt;jquery&lt;\/li&gt;\r\n  &lt;li class=\"wordpress\"&gt;wordpress&lt;\/li&gt;\r\n  &lt;li class=\"webstandards\"&gt;web standards&lt;\/li&gt;\r\n  &lt;li class=\"accessibility\"&gt;accessibility&lt;\/li&gt;\r\n  &lt;li class=\"usability\"&gt;usability&lt;\/li&gt;\r\n  &lt;li class=\"seo\"&gt;seo&lt;\/li&gt;\r\n  &lt;li class=\"responsive\"&gt;responsive layout&lt;\/li&gt;\r\n  &lt;li class=\"ajax\"&gt;ajax&lt;\/li&gt;\r\n  &lt;li class=\"objectoriented\"&gt;object oriented&lt;\/li&gt;\r\n  &lt;li class=\"crossbrowser\"&gt;cross browser&lt;\/li&gt;\r\n  &lt;li class=\"jg\"&gt;j.g.&lt;\/li&gt;\r\n  &lt;li class=\"skills\"&gt;skills&lt;\/li&gt;\r\n&lt;\/ul&gt;<\/pre>\n<p>2. Now, let&#8217;s style our word cloud using CSS. Create a <code>&lt;style&gt;<\/code> block or link an external CSS file to your HTML file. Here&#8217;s a snippet of the CSS code:<\/p>\n<pre class=\"prettyprint linenums lang-css\">@import url(https:\/\/fonts.googleapis.com\/css?family=Oswald:400,700,300);\r\n\r\n#techList {\r\n\tposition: relative;\r\n  list-style: none;\r\n  margin: 0;\r\n  padding: 0;\r\n  font-family: 'Oswald', sans-serif;\r\n  font-size: 100%;\r\n  text-transform: uppercase;\r\n  color: #666;\r\n}\r\n\r\n#techList li {\r\n\tposition: absolute;\r\n  top: 0;\r\n  left: 0;\r\n}\r\n\r\n.html5 {\r\n  font-weight: 700;\r\n  letter-spacing: -.05em;\r\n  -webkit-transform: \r\n  \t\tscale(7.5, 7.8)\r\n \t\t\ttranslate(1.18em, .68em);\r\n  -moz-transform: \r\n    \tscale(7.5, 7.8)\r\n \t\t\ttranslate(1.18em, .68em);\r\n}\r\n\r\n.javascript {\r\n  letter-spacing: -.04em;\r\n  font-weight: 400;\r\n\t-webkit-transform: \r\n    \tscale(1.4)\r\n    \trotate(90deg)\r\n    \ttranslate(3.88em, -13.2em);\r\n  -moz-transform: \r\n    \tscale(1.4)\r\n    \trotate(90deg)\r\n    \ttranslate(3.88em, -13.2em);\r\n}\r\n\r\n.accessibility {\r\n  letter-spacing: -.05em;\r\n  font-weight: 300;\r\n\t-webkit-transform:\r\n    \tscale(1.4, 1.33)\r\n    \trotate(90deg)\r\n    \ttranslate(4.1em, -18.0em);\r\n  -moz-transform: \r\n    \tscale(1.4, 1.33)\r\n    \trotate(90deg)\r\n    \ttranslate(4.1em, -18.0em);\r\n}\r\n\r\n.responsive {\r\n  font-weight: 300;\r\n  letter-spacing: -.03em;\r\n  word-spacing: .3em;\r\n  -webkit-transform: \r\n    \tscale(2)\r\n    \ttranslate(2.12em, 5.14em);\r\n  -moz-transform: \r\n    \tscale(2)\r\n    \ttranslate(2.12em, 5.14em);\r\n}\r\n\r\n.usability {\r\n  font-weight: 400;\r\n  letter-spacing: -.04em;\r\n  -webkit-transform: \r\n    \tscale(2.85, 3)\r\n      translate(7.14em, 3.55em);\r\n  -moz-transform: \r\n      scale(2.85, 3)\r\n      translate(7.14em, 3.55em);\r\n}\r\n\r\n.ajax {\r\n  letter-spacing: -0.01em;\r\n  font-weight: 700;\r\n\t-webkit-transform: \r\n    \tscale(2.4, 2.3)\r\n    \trotate(90deg)\r\n    \ttranslate(6em, -5.8em);\r\n  -moz-transform: \r\n    \tscale(2.4, 2.3)\r\n    \trotate(90deg)\r\n    \ttranslate(6em, -5.8em);\r\n}\r\n\r\n.css3 {\r\n  letter-spacing: .01em;\r\n  font-weight: 700;\r\n\t-webkit-transform: \r\n    \tscale(6.8, 6.75)\r\n    \trotate(90deg)\r\n    \ttranslate(1.32em, -4.54em);\r\n  -moz-transform: \r\n    \tscale(6.8, 6.75)\r\n    \trotate(90deg)\r\n    \ttranslate(1.32em, -4.54em);\r\n}\r\n\r\n.jquery {\r\n  letter-spacing: 0.045em;\r\n  font-weight: 700;\r\n\t-webkit-transform: \r\n    \tscale(3.88, 3.8)\r\n    \ttranslate(5.42em, 3.72em);\r\n  -moz-transform: \r\n    \tscale(3.88, 3.8)\r\n    \ttranslate(5.42em, 3.72em);\r\n}\r\n\r\n.objectoriented {\r\n  font-weight: 700;\r\n  letter-spacing: -.010em;\r\n  -webkit-transform: \r\n    \tscale(1.85, 1.9)\r\n      translate(1.86em, 6.5em);\r\n  -moz-transform: \r\n      scale(1.85, 1.9)\r\n      translate(1.86em, 6.5em);\r\n}\r\n\r\n.wordpress {\r\n  font-weight: 300;\r\n  letter-spacing: -0.05em;\r\n  -webkit-transform: \r\n    \tscale(2.75, 3)\r\n      translate(1.72em, 4.95em);\r\n  -moz-transform: \r\n      scale(2.75, 3)\r\n      translate(1.72em, 4.95em);\r\n}\r\n\r\n.seo {\r\n  font-weight: 300;\r\n  letter-spacing: -0.07em;\r\n  -webkit-transform: \r\n    \tscale(3.9, 4)\r\n      translate(6.05em, .95em);\r\n  -moz-transform: \r\n      scale(3.9, 4)\r\n      translate(6.05em, .95em);\r\n}\r\n\r\n.crossbrowser {\r\n  font-weight: 700;\r\n  letter-spacing: 0.1em;\r\n  word-spacing: .2em;\r\n  -webkit-transform: \r\n  \t\tscale(2)\r\n      translate(2.28em, 8.58em);\r\n  -moz-transform: \r\n      scale(2)\r\n      translate(2.28em, 8.58em);\r\n}\r\n\r\n.webstandards {\r\n  font-weight: 300;\r\n  letter-spacing: 0em;\r\n  word-spacing: .1em;\r\n  -webkit-transform: \r\n    \tscale(2)\r\n      translate(12.7em, 8.6em);\r\n  -moz-transform: \r\n      scale(2)\r\n      translate(12.7em, 8.6em);\r\n}\r\n\r\n.jg {\r\n  color: #ee5d29;\r\n  font-weight: 700;\r\n  letter-spacing: -.03em;\r\n  -webkit-transform: \r\n    \tscale(3.4)\r\n      translate(7.03em, 2.15em);\r\n  -moz-transform: \r\n      scale(3.4)\r\n      translate(7.03em, 2.15em);\r\n}\r\n\r\n.skills {\r\n  color: #ee5d29;\r\n  font-weight: 700;\r\n  letter-spacing: -.03em;\r\n  -webkit-transform: \r\n    \tscale(1.8)\r\n      translate(9.95em, 9.55em);\r\n  -moz-transform: \r\n      scale(1.8)\r\n      translate(9.95em, 9.55em);\r\n}<\/pre>\n<p>For each keyword class (e.g., <code>.html5<\/code>), you can apply unique <a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/CSS\/transform\" target=\"_blank\" rel=\"noopener\">CSS transformations<\/a> and styles to make them visually appealing. Experiment with different values to achieve your desired look.<\/p>\n<p>Feel free to add more keywords to your word cloud or adjust the styling further to suit your preferences. Experiment with different transformations, colors, and fonts to make your word cloud truly unique.<\/p>\n<p>That&#8217;s all! hopefully, you have successfully created Word Cloud using this HTML and CSS Code. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This HTML and CSS code helps you to create a word cloud. It uses CSS transformations to style each keyword&#8230;<\/p>\n","protected":false},"author":1,"featured_media":9045,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[63],"tags":[],"class_list":["post-9025","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>Word Cloud HTML CSS Code &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Word Cloud HTML CSS Code. 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\/word-cloud-html-css-code\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Word Cloud HTML CSS Code &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Word Cloud HTML CSS Code. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/\" \/>\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:59:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Word-Cloud-HTML-CSS-Code.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\/word-cloud-html-css-code\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Word Cloud HTML CSS Code\",\"datePublished\":\"2024-01-19T17:58:00+00:00\",\"dateModified\":\"2024-01-22T10:59:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/\"},\"wordCount\":233,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Word-Cloud-HTML-CSS-Code.png\",\"articleSection\":[\"HTML5 &amp; CSS3\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/\",\"url\":\"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/\",\"name\":\"Word Cloud HTML CSS Code &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Word-Cloud-HTML-CSS-Code.png\",\"datePublished\":\"2024-01-19T17:58:00+00:00\",\"dateModified\":\"2024-01-22T10:59:03+00:00\",\"description\":\"Here is a free code snippet to create a Word Cloud HTML CSS Code. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Word-Cloud-HTML-CSS-Code.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Word-Cloud-HTML-CSS-Code.png\",\"width\":1280,\"height\":960,\"caption\":\"Word Cloud HTML CSS Code\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/#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\":\"Word Cloud HTML CSS Code\"}]},{\"@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":"Word Cloud HTML CSS Code &#8212; CodeHim","description":"Here is a free code snippet to create a Word Cloud HTML CSS Code. 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\/word-cloud-html-css-code\/","og_locale":"en_US","og_type":"article","og_title":"Word Cloud HTML CSS Code &#8212; CodeHim","og_description":"Here is a free code snippet to create a Word Cloud HTML CSS Code. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/","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:59:03+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Word-Cloud-HTML-CSS-Code.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\/word-cloud-html-css-code\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Word Cloud HTML CSS Code","datePublished":"2024-01-19T17:58:00+00:00","dateModified":"2024-01-22T10:59:03+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/"},"wordCount":233,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Word-Cloud-HTML-CSS-Code.png","articleSection":["HTML5 &amp; CSS3"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/","url":"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/","name":"Word Cloud HTML CSS Code &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Word-Cloud-HTML-CSS-Code.png","datePublished":"2024-01-19T17:58:00+00:00","dateModified":"2024-01-22T10:59:03+00:00","description":"Here is a free code snippet to create a Word Cloud HTML CSS Code. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Word-Cloud-HTML-CSS-Code.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Word-Cloud-HTML-CSS-Code.png","width":1280,"height":960,"caption":"Word Cloud HTML CSS Code"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/#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":"Word Cloud HTML CSS Code"}]},{"@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":2167,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9025","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=9025"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9025\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/9045"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=9025"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=9025"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=9025"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}