{"id":9991,"date":"2024-01-10T18:13:00","date_gmt":"2024-01-10T18:13:00","guid":{"rendered":"https:\/\/codehim.com\/?p=9991"},"modified":"2024-01-22T16:14:14","modified_gmt":"2024-01-22T11:14:14","slug":"testimonial-quotes-cloud-in-html-css","status":"publish","type":"post","link":"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/","title":{"rendered":"Testimonial Quotes Cloud in HTML CSS"},"content":{"rendered":"<p>This HTML and CSS code snippet helps you to create a display of testimonial quotes in a <a href=\"https:\/\/codehim.com\/html5-css3\/word-cloud-html-css-code\/\" target=\"_blank\" rel=\"noopener\">cloud-like layout<\/a>. It showcases quotes from different sources, adding visual appeal to testimonials. The HTML structures quotes and their sources, while the CSS stylizes their appearance, arranging them in a visually pleasing grid.<\/p>\n<p>This setup is helpful for <a href=\"https:\/\/codehim.com\/carousel\/jquery-owl-carousel-testimonials-slider\/\" target=\"_blank\" rel=\"noopener\">showcasing client feedback<\/a> or reviews in an engaging format on web pages.<\/p>\n<h2>How to Create Testimonial Quotes Cloud In HTML CSS<\/h2>\n<p>1. First, copy the HTML code into your project. The <code>&lt;main&gt;<\/code> tag contains all the testimonial quotes. Each <code>&lt;b&gt;<\/code> tag represents a quote or its source. Modify the <code>&lt;q&gt;<\/code> tags within <code>&lt;b&gt;<\/code> tags to include your own testimonial quotes. Similarly, change the <code>&lt;cite&gt;<\/code> tags to reflect the sources of the quotes or testimonials.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;main&gt;\r\n  &lt;b class=\"rs4 blue vlr\"&gt;\r\n    &lt;q&gt;Unforgettable!&lt;\/q&gt;\r\n    &lt;cite&gt;Rita Sodyte&lt;\/cite&gt;\r\n  &lt;\/b&gt;\r\n  &lt;b class=\"rs3 cyan\"&gt;&lt;\/b&gt;\r\n  &lt;b class=\"cs1 cyan\"&gt;&lt;\/b&gt;\r\n  &lt;b class=\"cs4 yellow\"&gt;\r\n    &lt;q&gt;The best game ever&lt;\/q&gt;\r\n    &lt;cite&gt;Gamer Monthly&lt;\/cite&gt;\r\n  &lt;\/b&gt;\r\n  &lt;b class=\"rs3 blue vlr\"&gt;\r\n    &lt;q class=\"md\"&gt;A true test of mental agility.&lt;\/q&gt;\r\n  &lt;\/b&gt;\r\n  &lt;b class=\"cs1 blue\"&gt;&lt;\/b&gt;\r\n  &lt;b class=\"cs2 red\"&gt;&lt;\/b&gt;\r\n  &lt;b class=\"rs3 green vlr\"&gt;\r\n    &lt;q class=\"md\"&gt;Hours of entertainment&lt;\/q&gt;\r\n  &lt;\/b&gt;\r\n  &lt;b class=\"cs2 red\"&gt;&lt;q&gt;Level Up&lt;\/q&gt;&lt;\/b&gt;\r\n  &lt;b class=\"green\"&gt;&lt;\/b&gt;\r\n  &lt;b class=\"green\"&gt;&lt;\/b&gt;\r\n  &lt;b class=\"cs2 rs2 yellow\"&gt;\r\n    &lt;q&gt;Lost track of time&lt;\/q&gt;\r\n  &lt;\/b&gt;\r\n  &lt;b class=\"orange\"&gt;&lt;\/b&gt;\r\n  &lt;b class=\"cs2 green\"&gt;&lt;q&gt;Classic&lt;\/q&gt;&lt;cite&gt;Modern Gamer&lt;\/cite&gt;&lt;\/b&gt;\r\n  &lt;b class=\"red\"&gt;&lt;\/b&gt;\r\n  &lt;b class=\"cs2 orange\"&gt;&lt;\/b&gt;\r\n  &lt;b class=\"green\"&gt;&lt;\/b&gt;\r\n  &lt;b class=\"rs2 blue\"&gt;&lt;\/b&gt;\r\n  &lt;b class=\"cs3 red\"&gt;\r\n    &lt;q class=\"md\"&gt;The ultimate puzzle-solving challenge&lt;\/q&gt;\r\n  &lt;\/b&gt;\r\n  &lt;b class=\"blue\"&gt;&lt;\/b&gt;\r\n  &lt;b class=\"orange\"&gt;&lt;\/b&gt;\r\n  &lt;b class=\"rs2 blue\"&gt;&lt;\/b&gt;\r\n  &lt;b class=\"yellow\"&gt;&lt;\/b&gt;\r\n  &lt;b class=\"cs3 blue\"&gt;&lt;q&gt;Endless fun&lt;\/q&gt;&lt;\/b&gt;\r\n  &lt;b class=\"cs3 yellow\"&gt;&lt;q&gt;Endless possibilities&lt;\/q&gt;&lt;\/b&gt;\r\n\r\n  &lt;h1&gt;The Iconic Puzzle Game That Stands the Test of Time&lt;\/h1&gt;\r\n  &lt;b class=\"cs2 rs2 red\"&gt;&lt;q class=\"md\"&gt;Hooks you from the first block&lt;\/q&gt;&lt;cite&gt;Player One&lt;\/cite&gt;&lt;\/b&gt;\r\n  &lt;b class=\"rs4 cyan vlr\"&gt;&lt;q class=\"md\"&gt;A classic that never gets old&lt;\/q&gt;&lt;\/b&gt;\r\n  &lt;b class=\"cs4 orange\"&gt;\r\n    &lt;q class=\"md\"&gt;Simple, addictive, and timeless fun.&lt;\/q&gt;\r\n  &lt;\/b&gt;\r\n  &lt;article class=\"cs4 rs4\"&gt;\r\n    In the vast world of video games, only a few titles have managed to achieve the status of true icons. One such game that has captivated generations of players is Tetris. Created by Russian software engineer Alexey Pajitnov in 1984, Tetris remains a timeless masterpiece, loved and played by millions worldwide.\r\n  &lt;\/article&gt;\r\n  &lt;b class=\"cs2 rs2 yellow\"&gt;&lt;q class=\"md\"&gt;Highly addictive&lt;\/q&gt;&lt;cite&gt;Player Two&lt;\/cite&gt;&lt;\/b&gt;\r\n&lt;\/main&gt;<\/pre>\n<p>2. Now, add the following CSS code between &lt;style&gt; tag or external CSS file and link to your project. It defines colors, grid layouts, font sizes, and more. It styles the quotes and their sources to create a cloud-like appearance.<\/p>\n<pre class=\"prettyprint linenums lang-css\">\/* === COLORS === *\/\r\n.cyan { background-color: hsl(185, 86%, 70%); color: hsl(185, 86%, 10%); }\r\n.yellow { background-color: hsl(54, 93%, 66%); color: hsl(54, 93%, 8%); }\r\n.purple { background-color: rgb(96, 64, 176); }\r\n.green { background-color: hsl(87, 78%, 63%); color: hsl(87, 78%, 10%); }\r\n.red { background-color: hsl(338, 76%, 58%); color: hsl(338, 76%, 92%);  }\r\n.blue { background-color: hsl(214, 78%, 61%); color: hsl(214, 78%, 93%); }\r\n.orange { background-color: rgb(230, 117, 64); }\r\n\r\n\/* === GRID === *\/\r\n.cs1 { grid-column: span 1; }\r\n.cs2 { grid-column: span 2; }\r\n.cs3 { grid-column: span 3; }\r\n.cs4 { grid-column: span 4; }\r\n.rs2 { grid-row: span 2; }\r\n.rs3 { grid-row: span 3; }\r\n.rs4 { grid-row: span 4; }\r\n.vlr {\r\n  text-orientation: mixed;\r\n  writing-mode: vertical-rl;\r\n}\r\n\r\n\/* === TAGS === *\/\r\narticle {\r\n  font-size: clamp(0.75rem, 0.2143rem + 1.7143vw, 1.5rem);\r\n  line-height: 1.5;\r\n  overflow-y: auto;\r\n  padding:clamp(0.75rem, 0.2143rem + 1.7143vw, 1.5rem);\r\n  text-align: center;\r\n}\r\nbody {\r\n  background-color: hsl(180, 25%, 15%);\r\n  margin: 0;\r\n}\r\nb {\r\n  display: grid;\r\n  padding: 1ch;\r\n  place-content: center;\r\n  text-align: center;\r\n}\r\ncite {\r\n  font-size: clamp(0.5rem, 0.3295rem + 0.8523vw, 0.875rem);\r\n  font-weight: 300;\r\n  white-space: nowrap;\r\n}\r\ncite::before { content: \"\u2014 \"; }\r\nh1 {\r\n  font-size: clamp(2rem, 0.8636rem + 5.6818vw, 4.5rem);\r\n  grid-column: 1 \/ span 7;\r\n  grid-row-start: 9 \/ span 2;\r\n  line-height: 1.1;\r\n  padding-inline: .25ch;\r\n  text-align: center;\r\n}\r\nmain {\r\n  aspect-ratio: 1 \/ 2;\r\n  background: darkslategray !important;\r\n  color: hsl(182, 19%, 92%);\r\n  display: grid;\r\n  font-family: ui-sans-serif, system-ui, sans-serif;\r\n  grid-template-columns: repeat(7, 1fr);\r\n  grid-template-rows: repeat(14, 1fr);\r\n  margin-inline: auto;\r\n  max-inline-size: 1024px;\r\n}\r\nq {\r\n  font-size: clamp(0.875rem, -0.2045rem + 5.3977vw, 3.25rem);\r\n  line-height: 1;\r\n  margin-block-end: .25ch;\r\n}\r\nq.md {\r\n  font-size: clamp(0.625rem, -0.1136rem + 3.6932vw, 2.25rem);\r\n}\r\n@media (max-width: 500px) {\r\n  article {\r\n    display: -webkit-box;\r\n  -webkit-line-clamp: 3;\r\n  -webkit-box-orient: vertical;  \r\n  overflow: hidden;\r\n  place-self: start;\r\n  }\r\n}<\/pre>\n<p>Feel free to update the color values in the CSS to match your website&#8217;s theme. Likewise, adjust the grid column and row spans in the CSS (<code>.cs1<\/code>, <code>.cs2<\/code>, etc.) to change the layout.<\/p>\n<p>That&#8217;s all! hopefully, you have successfully created Testimonial Quotes Cloud on your website. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This HTML and CSS code snippet helps you to create a display of testimonial quotes in a cloud-like layout. It&#8230;<\/p>\n","protected":false},"author":1,"featured_media":9997,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[63],"tags":[112],"class_list":["post-9991","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-html5-css3","tag-testimonial"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Testimonial Quotes Cloud in HTML CSS &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Testimonial Quotes Cloud in HTML CSS. 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\/testimonial-quotes-cloud-in-html-css\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Testimonial Quotes Cloud in HTML CSS &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Testimonial Quotes Cloud in HTML CSS. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/\" \/>\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-10T18:13:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T11:14:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Testimonial-Quotes-Cloud-in-HTML-CSS.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\/testimonial-quotes-cloud-in-html-css\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Testimonial Quotes Cloud in HTML CSS\",\"datePublished\":\"2024-01-10T18:13:00+00:00\",\"dateModified\":\"2024-01-22T11:14:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/\"},\"wordCount\":228,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Testimonial-Quotes-Cloud-in-HTML-CSS.png\",\"keywords\":[\"Testimonial\"],\"articleSection\":[\"HTML5 &amp; CSS3\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/\",\"url\":\"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/\",\"name\":\"Testimonial Quotes Cloud in HTML CSS &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Testimonial-Quotes-Cloud-in-HTML-CSS.png\",\"datePublished\":\"2024-01-10T18:13:00+00:00\",\"dateModified\":\"2024-01-22T11:14:14+00:00\",\"description\":\"Here is a free code snippet to create a Testimonial Quotes Cloud in HTML CSS. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Testimonial-Quotes-Cloud-in-HTML-CSS.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Testimonial-Quotes-Cloud-in-HTML-CSS.png\",\"width\":1280,\"height\":960,\"caption\":\"Testimonial Quotes Cloud in HTML CSS\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/#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\":\"Testimonial Quotes Cloud in HTML CSS\"}]},{\"@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":"Testimonial Quotes Cloud in HTML CSS &#8212; CodeHim","description":"Here is a free code snippet to create a Testimonial Quotes Cloud in HTML CSS. 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\/testimonial-quotes-cloud-in-html-css\/","og_locale":"en_US","og_type":"article","og_title":"Testimonial Quotes Cloud in HTML CSS &#8212; CodeHim","og_description":"Here is a free code snippet to create a Testimonial Quotes Cloud in HTML CSS. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-10T18:13:00+00:00","article_modified_time":"2024-01-22T11:14:14+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Testimonial-Quotes-Cloud-in-HTML-CSS.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\/testimonial-quotes-cloud-in-html-css\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Testimonial Quotes Cloud in HTML CSS","datePublished":"2024-01-10T18:13:00+00:00","dateModified":"2024-01-22T11:14:14+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/"},"wordCount":228,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Testimonial-Quotes-Cloud-in-HTML-CSS.png","keywords":["Testimonial"],"articleSection":["HTML5 &amp; CSS3"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/","url":"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/","name":"Testimonial Quotes Cloud in HTML CSS &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Testimonial-Quotes-Cloud-in-HTML-CSS.png","datePublished":"2024-01-10T18:13:00+00:00","dateModified":"2024-01-22T11:14:14+00:00","description":"Here is a free code snippet to create a Testimonial Quotes Cloud in HTML CSS. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Testimonial-Quotes-Cloud-in-HTML-CSS.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Testimonial-Quotes-Cloud-in-HTML-CSS.png","width":1280,"height":960,"caption":"Testimonial Quotes Cloud in HTML CSS"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/html5-css3\/testimonial-quotes-cloud-in-html-css\/#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":"Testimonial Quotes Cloud in HTML CSS"}]},{"@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":874,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9991","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=9991"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9991\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/9997"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=9991"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=9991"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=9991"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}