{"id":9247,"date":"2024-01-18T17:59:00","date_gmt":"2024-01-18T17:59:00","guid":{"rendered":"https:\/\/codehim.com\/?p=9247"},"modified":"2024-01-22T16:01:13","modified_gmt":"2024-01-22T11:01:13","slug":"poll-ui-using-html-and-css","status":"publish","type":"post","link":"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/","title":{"rendered":"Poll UI using HTML and CSS"},"content":{"rendered":"<p>This code is designed to create a Poll User Interface using HTML and CSS. It allows users to select options, displaying their <a href=\"https:\/\/codehim.com\/vanilla-javascript\/javascript-progress-bar-with-percentage\/\" target=\"_blank\" rel=\"noopener\">progress in percentages<\/a> with a stylish design. The core functionality includes custom checkboxes and visually appealing progress bars, making it helpful for collecting user opinions and feedback.<\/p>\n<p>It enhances user engagement and provides a user-friendly <a href=\"https:\/\/codehim.com\/html5-css3\/feedback-form-with-star-rating-in-html\/\" target=\"_blank\" rel=\"noopener\">interface for feedback<\/a> collection. The code&#8217;s simplicity makes it easy to integrate into your projects for better user interaction.<\/p>\n<h2>How to Create Poll Ui Using Html And Css<\/h2>\n<p>1. First of all, load the <a href=\"https:\/\/meyerweb.com\/eric\/tools\/css\/reset\/\" target=\"_blank\" rel=\"noopener\">Reset CSS<\/a> by adding the following CDN link into the head tag of your HTML document.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/meyer-reset\/2.0\/reset.min.css\"&gt;<\/pre>\n<p>2. Inside the <code>&lt;body&gt;<\/code> of your HTML document, define the structure of your poll form using the following code:<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;main&gt;  \r\n  &lt;form&gt;\r\n    &lt;header&gt;\r\n    &lt;p&gt;If you write a book about failure,&lt;br \/&gt; and it doesn't sell, is it called success?&lt;\/p&gt;\r\n    &lt;\/header&gt;  \r\n  &lt;div class=\"poll\"&gt;\r\n    &lt;div class=\"poll-line\"&gt;      \r\n    &lt;input type=\"checkbox\" id=\"opt-1\" name=\"poll\" checked&gt;\r\n      &lt;label for=\"opt-1\"&gt;Definitely a success.&lt;\/label&gt;      \r\n      &lt;progress value=\"65\" max=\"100\" class=\"success\"&gt;\r\n    &lt;\/progress&gt;\r\n      &lt;span class=\"progress-value\"&gt;65%&lt;\/span&gt;      \r\n    &lt;\/div&gt;\r\n    \r\n    &lt;div class=\"poll-line\"&gt;\r\n      &lt;input type=\"checkbox\" id=\"opt-2\" name=\"poll\"&gt; &lt;label for=\"opt-2\"&gt;No.&lt;\/label&gt;\r\n    &lt;progress value=\"12\" max=\"100\" class=\"negative\"&gt;&lt;\/progress&gt;\r\n      &lt;span class=\"progress-value\"&gt;12%&lt;\/span&gt;\r\n    &lt;\/div&gt;\r\n    \r\n    &lt;div class=\"poll-line\"&gt;\r\n    &lt;input type=\"checkbox\" id=\"opt-3\" name=\"poll\"&gt; &lt;label for=\"opt-3\"&gt;Only if it's in the How To Section of the Library.&lt;\/label&gt;\r\n    &lt;progress value=\"23\" max=\"100\" class=\"best-seller\"&gt; &lt;\/progress&gt;&lt;span class=\"progress-value\"&gt;23%&lt;\/span&gt;\r\n    &lt;\/div&gt;\r\n  &lt;\/div&gt;\r\n    &lt;div class=\"form-btn\"&gt;\r\n      &lt;button type=\"submit\" id=\"submit\" name=\"submit\"&gt;Submit&lt;\/button&gt;\r\n    &lt;\/div&gt;\r\n      &lt;\/form&gt;\r\n&lt;\/main&gt;<\/pre>\n<p>You can customize your poll options by changing the text and values in the HTML code. For each option, find the following code and modify it accordingly:<\/p>\n<p>3. Now, let&#8217;s style your poll UI. You can customize the design further by modifying the included CSS code. Add this code to the <code>&lt;style&gt;<\/code> section in your HTML file or include it in a separate CSS file.<\/p>\n<pre class=\"prettyprint linenums lang-css\">@import url(\"https:\/\/fonts.googleapis.com\/css?family=Roboto:400,400i,700\");\r\n\r\n.cd__main{\r\n    background: linear-gradient(to right, #2193b0, #6dd5ed) !important;\r\n}\r\nbody {\r\n  background-color: rgb(55, 96, 103);\r\n  font-family: Roboto, sans-serif;\r\n  font-size: 16px;\r\n  color: rgb(55, 96, 103);\r\n}\r\n\r\nmain {\r\n\t\t\tmax-width: 100vw;\r\n      height: 100vw;\r\n\t\t}\r\nform {\r\n\t\t\tbackground-color: #fff;      \r\n      max-width: 500px;\r\n\t\t\tmargin: 0 auto;\r\n      margin-top: 200px;\r\n\t\t\tborder-radius: 10px;\r\n      box-shadow: 0px -1px 19px 0px rgba(0, 0, 0, 0.53);\r\n\t\t}\r\nform header p {\r\n  max-width: 500px;\r\n  padding: 2rem;\r\n  background-color: #f2fcfe;\r\n  display: flex;\r\n  justify-content: center;\r\n  text-align: center;\r\n  line-height: 1.2;\r\n  font-weight: 600;\r\n  border-radius: 10px;\r\n}\r\n.poll-line {\r\n  background-color: white;\r\n  padding: 2rem;\r\n  border-bottom: 2px solid #f3f3f3;\r\n  \r\n}\r\n\/*****\r\n* Checkbox\r\n******\/\r\n\/* Hide default checkbox *\/\r\n.poll-line input[type='checkbox'] {\r\nposition: absolute;\r\nclip: rect(1px, 1px, 1px, 1px);\r\n}\r\n\r\n.poll-line input[type='checkbox'] + label {\r\npadding: 0 0 0 15px;\r\nmargin: 0 0 0 5px;\r\nposition: relative;\r\n}\r\n\r\n.poll-line input[type='checkbox'] + label::before { \r\ncontent: \"\";\r\nwidth: 15px;\r\nheight: 15px;\r\nborder: solid 2px #f3f3f3;\r\nbackground: #fff;\r\ncursor: pointer;\r\nposition: absolute;\r\ntop: -1px;\r\nleft: -7px;\r\nborder-radius: 3px;\r\n}\r\n\r\n.poll-line input[type='checkbox']:checked + label::after { \r\ncontent: \"&#x2714;\";\r\ndisplay: block;\r\n width: 15px;\r\nheight: 15px;\r\nborder: solid 2px #06b3d5;\r\nposition: absolute; \r\ntop: 1px;\r\nleft: -7px;\r\nmargin: 0 auto; \r\nbackground-color: #06b3d5;\r\ncolor: #fff;\r\nfont-size: 18px;\r\nborder-radius: 3px;\r\n}\r\n\r\n\/********\r\n* Progress Bar Style\r\n*********\/\r\nprogress {  \r\n  width: 90%;\r\n  background-color: #f3f3f3;\r\n  border-radius: 7px;\r\n  height: 8px;\r\n  margin: 5px 0;\r\n  border: none;\r\n}\r\n\r\nprogress::-webkit-progress-bar {\r\n\tbackground-color: #f3f3f3;\r\n\tborder-radius: 7px;\r\n}\r\n.progress-value {\r\n\tpadding: 0px 3px;\r\n\tmargin-left: 5px;\r\n\tfloat: right;\r\n  font-weight: 600;\r\n}\r\nprogress.success::-webkit-progress-value {\r\n\tbackground: #9ae972;\r\n  border-radius: 7px;\r\n}\r\nprogress.success::-moz-progress-bar {\r\n\tbackground: #9ae972;\r\n  border-radius: 7px;\r\n}\r\n\r\nprogress.negative::-webkit-progress-value {\r\n\tbackground: #fe5f57;\r\n  border-radius: 7px;\r\n}\r\nprogress.negative::-moz-progress-bar {\r\n\tbackground: #fe5f57;\r\n  border-radius: 7px;\r\n}\r\n\r\nprogress.best-seller::-webkit-progress-value {\r\n\tbackground: #ff994e;\r\n  border-radius: 7px;\r\n}\r\nprogress.best-seller::-moz-progress-bar {\r\n\tbackground: #ff994e;\r\n  border-radius: 7px;\r\n}\r\n\r\n\/*****\r\n* Button Style\r\n******\/\r\n.form-btn {\r\n  display: flex;\r\n  justify-content: center;\r\n}\r\nbutton {\r\n  margin: 2rem;\r\n  background-color: #06b3d5;\r\n  color: #fff;\r\n  font-family: inherit;\r\n  font-weight: 600;\r\n  padding: 0.6rem 2rem;\r\n  border: none;\r\n  border-radius: 7px;\r\n  cursor: pointer;\r\n}<\/pre>\n<p>That&#8217;s all! hopefully, you have successfully created Poll UI using HTML and CSS. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code is designed to create a Poll User Interface using HTML and CSS. It allows users to select options,&#8230;<\/p>\n","protected":false},"author":1,"featured_media":9254,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[63],"tags":[],"class_list":["post-9247","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>Poll UI using HTML and CSS &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Poll UI using HTML and 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\/poll-ui-using-html-and-css\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Poll UI using HTML and CSS &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Poll UI using HTML and CSS. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-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-18T17:59:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T11:01:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Poll-UI-using-HTML-and-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\/poll-ui-using-html-and-css\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Poll UI using HTML and CSS\",\"datePublished\":\"2024-01-18T17:59:00+00:00\",\"dateModified\":\"2024-01-22T11:01:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/\"},\"wordCount\":220,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Poll-UI-using-HTML-and-CSS.png\",\"articleSection\":[\"HTML5 &amp; CSS3\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/\",\"url\":\"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/\",\"name\":\"Poll UI using HTML and CSS &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Poll-UI-using-HTML-and-CSS.png\",\"datePublished\":\"2024-01-18T17:59:00+00:00\",\"dateModified\":\"2024-01-22T11:01:13+00:00\",\"description\":\"Here is a free code snippet to create a Poll UI using HTML and CSS. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Poll-UI-using-HTML-and-CSS.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Poll-UI-using-HTML-and-CSS.png\",\"width\":1280,\"height\":960,\"caption\":\"Poll UI using HTML and CSS\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-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\":\"Poll UI using HTML and 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":"Poll UI using HTML and CSS &#8212; CodeHim","description":"Here is a free code snippet to create a Poll UI using HTML and 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\/poll-ui-using-html-and-css\/","og_locale":"en_US","og_type":"article","og_title":"Poll UI using HTML and CSS &#8212; CodeHim","og_description":"Here is a free code snippet to create a Poll UI using HTML and CSS. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-18T17:59:00+00:00","article_modified_time":"2024-01-22T11:01:13+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Poll-UI-using-HTML-and-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\/poll-ui-using-html-and-css\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Poll UI using HTML and CSS","datePublished":"2024-01-18T17:59:00+00:00","dateModified":"2024-01-22T11:01:13+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/"},"wordCount":220,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Poll-UI-using-HTML-and-CSS.png","articleSection":["HTML5 &amp; CSS3"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/","url":"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/","name":"Poll UI using HTML and CSS &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Poll-UI-using-HTML-and-CSS.png","datePublished":"2024-01-18T17:59:00+00:00","dateModified":"2024-01-22T11:01:13+00:00","description":"Here is a free code snippet to create a Poll UI using HTML and CSS. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-css\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Poll-UI-using-HTML-and-CSS.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Poll-UI-using-HTML-and-CSS.png","width":1280,"height":960,"caption":"Poll UI using HTML and CSS"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/html5-css3\/poll-ui-using-html-and-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":"Poll UI using HTML and 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":3527,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9247","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=9247"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9247\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/9254"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=9247"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=9247"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=9247"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}