{"id":9157,"date":"2024-01-19T17:59:00","date_gmt":"2024-01-19T17:59:00","guid":{"rendered":"https:\/\/codehim.com\/?p=9157"},"modified":"2024-01-22T15:59:39","modified_gmt":"2024-01-22T10:59:39","slug":"free-html-code-for-survey-form","status":"publish","type":"post","link":"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/","title":{"rendered":"Free HTML Code For Survey Form"},"content":{"rendered":"<p>This HTML and CSS code creates a user-friendly survey form. It collects user data and preferences, making it easy to gather feedback. The form includes input fields for name, email, work experience, a dropdown question, <a href=\"https:\/\/codehim.com\/text-input\/search-box-with-suggestions-dropdown-unibox-js\/\" target=\"_blank\" rel=\"noopener\">text suggestions<\/a>, and checkboxes for investment preferences.<\/p>\n<p>Users can also indicate their willingness for further contact. The CSS styling ensures an attractive and responsive design for a seamless user experience.<\/p>\n<p>It helps you collect valuable feedback, user information, and preferences, making it great for market research and user engagement. The code&#8217;s responsive design ensures it works well on various devices, enhancing user accessibility.<\/p>\n<h2>How to Create a Survey Form Using HTML and CSS<\/h2>\n<p>1. First, copy the entire HTML code into your webpage. This code includes the structure of the survey form, labels, and<a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/HTML\/Element\/input\" target=\"_blank\" rel=\"noopener\"> input fields<\/a>. You can customize the form by changing labels and placeholders to match the questions you want to ask in your survey.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div id=\"main\"&gt;\r\n    &lt;header&gt;\r\n      &lt;h1 id=\"title\"&gt;Survey Form&lt;\/h1&gt;\r\n      &lt;p id=\"description\"&gt;User stories survey form&lt;\/p&gt;\r\n    &lt;\/header&gt;\r\n     &lt;main&gt;\r\n      &lt;form id=\"survey-form\" method=\"GET\" action=\"#\"&gt;\r\n        &lt;div class=\"bottom-top-padding\"&gt;\r\n          &lt;div class=\"label-div\"&gt;\r\n            &lt;label id=\"name-label\" for=\"name\"&gt;Name: &lt;\/label&gt;\r\n          &lt;\/div&gt;\r\n           &lt;div class=\"input-div\"&gt;\r\n            &lt;input id=\"name\" class=\"input-text\" type=\"text\" placeholder=\"Enter Name\" required&gt;\r\n          &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n         &lt;div class=\"bottom-top-padding\"&gt;\r\n          &lt;div class=\"label-div\"&gt;\r\n            &lt;label id=\"email-label\" for=\"email\"&gt;E-mail: &lt;\/label&gt;\r\n          &lt;\/div&gt;\r\n          &lt;div class=\"input-div\"&gt;\r\n            &lt;input id=\"email\" class=\"input-text\" type=\"email\" placeholder=\"Enter E-Mail\" required&gt;&lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n          &lt;div class=\"bottom-top-padding\"&gt;\r\n          &lt;div class=\"label-div\"&gt;\r\n            &lt;label id=\"number-label\" for=\"number\"&gt;Work Experience: &lt;\/label&gt;\r\n          &lt;\/div&gt;\r\n          &lt;div class=\"input-div\"&gt;\r\n            &lt;input id=\"number\" class=\"input-text\" min=\"0\" max=\"80\" type=\"number\" placeholder=\"Enter Number\"&gt;\r\n          &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n         &lt;div class=\"bottom-top-padding\"&gt;\r\n          &lt;div class=\"label-div\"&gt;\r\n            &lt;label for=\"dropdown\"&gt;Are you comfortable in investing in real estate on platform without first investigating properly&lt;\/label&gt;\r\n          &lt;\/div&gt;\r\n          &lt;div class=\"input-div\"&gt;\r\n            &lt;select id=\"dropdown\" type=\"dropdown\"&gt;\r\n        &lt;option&gt;Yes&lt;\/option&gt;\r\n        &lt;option&gt;No&lt;\/option&gt;\r\n        &lt;option&gt;Maybe&lt;\/option&gt;\r\n      &lt;\/select&gt;\r\n          &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n         &lt;div class=\"bottom-top-padding\"&gt;\r\n          &lt;div class=\"label-div\"&gt;\r\n            &lt;label&gt;Suggestions to build trusted platform&lt;\/label&gt;\r\n          &lt;\/div&gt;\r\n          &lt;div class=\"input-div\"&gt;\r\n            &lt;textarea type=\"text\"&gt;&lt;\/textarea&gt;\r\n          &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n         &lt;div class=\"bottom-top-padding\"&gt;\r\n          &lt;div class=\"label-div\"&gt;\r\n            &lt;label&gt;You are ready to invest in:&lt;\/label&gt;\r\n          &lt;\/div&gt;\r\n          &lt;div id=\"\" class=\"input-div\"&gt;\r\n            &lt;label for=\"real-estate\"&gt;&lt;input id=\"real-estate\" type=\"checkbox\" name=\"real-estate\" value=\"real-estate\"&gt;Real Estate&lt;\/label&gt;\r\n            &lt;\/br&gt;\r\n            &lt;label for=\"mutual-funds\"&gt;&lt;input id=\"mutual-funds\" type=\"checkbox\" name=\"mutual-funds\" value=\"mutual-funds\"&gt;Mututal Funds&lt;\/label&gt;\r\n            &lt;\/br&gt;\r\n            &lt;label for=\"crypto\"&gt;&lt;input id=\"crypto\" type=\"checkbox\" name=\"crypto\" value=\"crypto\"&gt;Crypto Currency&lt;\/label&gt;\r\n            &lt;\/br&gt;\r\n            &lt;label for=\"stocks\"&gt;&lt;input id=\"stocks\" type=\"checkbox\" name=\"stocks\" value=\"stocks\"&gt; Stocks &amp; Bonds&lt;\/label&gt;\r\n            &lt;\/br&gt;\r\n          &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n        &lt;div class=\"bottom-top-padding\"&gt;\r\n          &lt;div class=\"label-div\"&gt;\r\n            &lt;label&gt;Are you ready for further contact&lt;\/label&gt;\r\n          &lt;\/div&gt;\r\n          &lt;div class=\"\"&gt;\r\n            &lt;label&gt; \r\n  &lt;input type=\"radio\" name=\"data\" value=\"yes\"&gt;Yes \r\n&lt;\/label&gt;\r\n            &lt;\/br&gt;\r\n            &lt;label&gt; \r\n  &lt;input type=\"radio\" name=\"data\" value=\"no\"&gt;No \r\n&lt;\/label&gt;\r\n          &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n        &lt;div id=\"submit-div\"&gt;\r\n          &lt;button id=\"submit\"&gt;Submit&lt;\/button&gt;\r\n        &lt;\/div&gt;\r\n      &lt;\/form&gt;\r\n    &lt;\/main&gt;\r\n    &lt;\/div&gt;<\/pre>\n<p>2. Now, include the following CSS code in the <code>&lt;style&gt;<\/code> section of your webpage or link to an external CSS file. This will give your survey form a stylish and responsive design.<\/p>\n<pre class=\"prettyprint linenums lang-css\">\/* display: flex is used*\/\r\n@import url(https:\/\/fonts.googleapis.com\/css?family=Raleway:400,500);\r\n\r\nbody{\r\n margin: 0px;\r\n  display: flex;\r\n  flex-direction: row;\r\n  justify-content: center;\r\n  background-color: #ffb24f;\r\n  font-family: 'Raleway', Helvetica, sans-serif,Arial;\r\n}\r\n#main{\r\n  width: 80%;\r\n  display: flex;\r\n  flex-direction: column;\r\n  align-items: center;\r\n   background-color: white;\r\n}\r\nform{\r\n  display: flex;\r\n  flex-direction: column;\r\n  justify-content: space-between;\r\n  min-height: 500px;\r\n}\r\nheader{\r\n  text-align: center;\r\n  \r\n}\r\nmain{\r\n  display: flex;\r\n  display-direction: row;\r\n  justify-content: center;\r\n  padding-bottom: 20px;\r\n}\r\n.bottom-top-padding{\r\n padding-top: 10px;\r\n padding-bottom: 10px;\r\n display: flex;\r\n  \r\n}\r\n\r\n.label-div{\r\n  width: 50%;\r\n  text-align: right;\r\n  padding-right: 8px;\r\n}\r\n.input-div{\r\n  width: 50%;\r\n  text-align: left;\r\n  padding-left: 8px;\r\n}\r\n#submit-div{\r\n display: flex;\r\n  justify-content: center;\r\n  \r\n}\r\n.input-text, select, textarea{\r\n  width: 60%;\r\n  height: 100%;\r\n}\r\n#submit{\r\n  background-color: #ffb24f;\r\n  color: white;\r\n  height: 35px;\r\n  width: 200px;\r\n  border-radius: 8px;\r\n  font-size: 20px; \r\n  border: 0px;\r\n    font-family: 'Raleway', Helvetica, sans-serif,Arial;\r\n}<\/pre>\n<p>You can further customize the appearance by modifying the CSS code, and adjusting colors, fonts, and layout according to your website&#8217;s theme.<\/p>\n<p>That&#8217;s it! hopefully, you have successfully integrated this free HTML code into your web project to create a Survey Form. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This HTML and CSS code creates a user-friendly survey form. It collects user data and preferences, making it easy to&#8230;<\/p>\n","protected":false},"author":1,"featured_media":9166,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[232],"tags":[],"class_list":["post-9157","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-forms"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Free HTML Code For Survey Form &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Free HTML Code For Survey Form. 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\/forms\/free-html-code-for-survey-form\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Free HTML Code For Survey Form &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Free HTML Code For Survey Form. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/\" \/>\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:59:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T10:59:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Free-HTML-Code-For-Survey-Form.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"960\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Asif Mughal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:site\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Asif Mughal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Free HTML Code For Survey Form\",\"datePublished\":\"2024-01-19T17:59:00+00:00\",\"dateModified\":\"2024-01-22T10:59:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/\"},\"wordCount\":244,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Free-HTML-Code-For-Survey-Form.png\",\"articleSection\":[\"Forms\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/\",\"url\":\"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/\",\"name\":\"Free HTML Code For Survey Form &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Free-HTML-Code-For-Survey-Form.png\",\"datePublished\":\"2024-01-19T17:59:00+00:00\",\"dateModified\":\"2024-01-22T10:59:39+00:00\",\"description\":\"Here is a free code snippet to create a Free HTML Code For Survey Form. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Free-HTML-Code-For-Survey-Form.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Free-HTML-Code-For-Survey-Form.png\",\"width\":1280,\"height\":960,\"caption\":\"Free HTML Code For Survey Form\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Forms\",\"item\":\"https:\/\/codehim.com\/category\/forms\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Free HTML Code For Survey Form\"}]},{\"@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":"Free HTML Code For Survey Form &#8212; CodeHim","description":"Here is a free code snippet to create a Free HTML Code For Survey Form. 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\/forms\/free-html-code-for-survey-form\/","og_locale":"en_US","og_type":"article","og_title":"Free HTML Code For Survey Form &#8212; CodeHim","og_description":"Here is a free code snippet to create a Free HTML Code For Survey Form. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-19T17:59:00+00:00","article_modified_time":"2024-01-22T10:59:39+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Free-HTML-Code-For-Survey-Form.png","type":"image\/png"}],"author":"Asif Mughal","twitter_card":"summary_large_image","twitter_creator":"@CodeHimOfficial","twitter_site":"@CodeHimOfficial","twitter_misc":{"Written by":"Asif Mughal","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Free HTML Code For Survey Form","datePublished":"2024-01-19T17:59:00+00:00","dateModified":"2024-01-22T10:59:39+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/"},"wordCount":244,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Free-HTML-Code-For-Survey-Form.png","articleSection":["Forms"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/","url":"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/","name":"Free HTML Code For Survey Form &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Free-HTML-Code-For-Survey-Form.png","datePublished":"2024-01-19T17:59:00+00:00","dateModified":"2024-01-22T10:59:39+00:00","description":"Here is a free code snippet to create a Free HTML Code For Survey Form. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Free-HTML-Code-For-Survey-Form.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Free-HTML-Code-For-Survey-Form.png","width":1280,"height":960,"caption":"Free HTML Code For Survey Form"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/forms\/free-html-code-for-survey-form\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Forms","item":"https:\/\/codehim.com\/category\/forms\/"},{"@type":"ListItem","position":3,"name":"Free HTML Code For Survey Form"}]},{"@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":5308,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9157","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=9157"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9157\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/9166"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=9157"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=9157"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=9157"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}