{"id":402,"date":"2021-07-09T11:36:53","date_gmt":"2021-07-09T06:06:53","guid":{"rendered":"https:\/\/wpproonline.com\/?p=402"},"modified":"2026-02-26T10:44:32","modified_gmt":"2026-02-26T10:44:32","slug":"chapter-18-forms","status":"publish","type":"post","link":"https:\/\/www.digitalhubz.com\/blog\/chapter-18-forms\/","title":{"rendered":"Chapter 18: Forms"},"content":{"rendered":"\n<figure>\n<table>\n<tbody>\n<tr>\n<td><strong>Attribute<\/strong><\/td>\n<td><strong>Description<\/strong><\/td>\n<\/tr>\n<tr>\n<td><em>accept-charset<\/em><\/td>\n<td>Specifies the character encodings that are to be used for the form submission.<\/td>\n<\/tr>\n<tr>\n<td><em>action<\/em><\/td>\n<td>Specifies where to send the form-data when a form is submitted.<\/td>\n<\/tr>\n<tr>\n<td><em>autocomplete<\/em><\/td>\n<td>Specifies whether a form should have autocomplete on or off.<\/td>\n<\/tr>\n<tr>\n<td><em>enctype<\/em><\/td>\n<td>Specifies how the form-data should be encoded when submitting it to the server (only for<br \/>method=&#8221;post&#8221;).<\/td>\n<\/tr>\n<tr>\n<td><em>method<\/em><\/td>\n<td>Specifies the HTTP method to use when sending form-data (POST or GET).<\/td>\n<\/tr>\n<tr>\n<td><em>name<\/em><\/td>\n<td>Specifies the name of a form.<\/td>\n<\/tr>\n<tr>\n<td><em>novalidate<\/em><\/td>\n<td>Specifies that the form should not be validated when submitted.<\/td>\n<\/tr>\n<tr>\n<td><em>target<\/em><\/td>\n<td>Specifies where to display the response that is received after submitting the form.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/figure>\n\n<p><!--more--><\/p>\n\n<p class=\"wp-block-paragraph\">In order to group input elements and submit data, HTML uses a form element to encapsulate input and submission<br \/>elements. These forms handle sending the data in the specified method to a page handled by a server or handler.<br \/>This topic explains and demonstrates the usage of HTML forms in collecting and submitting input data.<\/p>\n\n<h2 class=\"wp-block-heading\" id=\"h-submitting\">Submitting<\/h2>\n\n<p class=\"wp-block-paragraph\"><strong>The Action Attribute<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">The action attribute defines the action to be performed when the form is submitted, which usually leads to a script<br \/>that collects the information submitted and works with it. if you leave it blank, it will send it to the same file<\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;form action=\"action.php\"&gt;<\/pre>\n\n<p class=\"wp-block-paragraph\"><strong>The Method Attribute<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">The method attribute is used to define the HTTP method of the form which is either GET or POST.<\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;form action=\"action.php\" method=\"get\"&gt;\n&lt;form action=\"action.php\" method=\"post\"&gt;<\/pre>\n\n<p class=\"wp-block-paragraph\">The GET method is mostly used to get data, for example to receive a post by its ID or name, or to submit a search<br \/>query. The GET method will append the form data to the URL specified in the action attribute.<\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">www.example.com\/action.php?firstname=Mickey&amp;lastname=Mouse<\/pre>\n\n<p class=\"wp-block-paragraph\">The POST method is used when submitting data to a script. The POST method does not append the form data to<br \/>the action URL but sends using the request body.<\/p>\n\n<p class=\"wp-block-paragraph\">To submit the data from the form correctly, a name attribute name must be specified.<br \/>As an example let&#8217;s send the value of the field and set its name to <em><strong>lastname:<\/strong><\/em><\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;input type=\"text\" name=\"lastname\" value=\"Mouse\"&gt;<\/pre>\n\n<p class=\"wp-block-paragraph\"><strong>More attributes<\/strong><\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;form action=\"action.php\" method=\"post\" target=\"_blank\" accept-charset=\"UTF-8\"\nenctype=\"application\/x-www-form-urlencoded\" autocomplete=\"off\" novalidate&gt;\n&lt;\/form&gt;<\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"h-target-attribute-in-form-tag\">Target attribute in form tag<\/h2>\n\n<p class=\"wp-block-paragraph\">The target attribute specifies a name or a keyword that indicates where to display the response that is received<br \/>after submitting the form.<\/p>\n\n<p class=\"wp-block-paragraph\">The target attribute defines a name of, or keyword for, a browsing context (e.g. tab, window, or inline frame).<\/p>\n\n<p class=\"wp-block-paragraph\">From Tag with a target attribute:<\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;form target=\"_blank\"&gt;<\/pre>\n\n<p class=\"wp-block-paragraph\"><strong>Attribute Values<\/strong><\/p>\n\n<figure>\n<table>\n<tbody>\n<tr>\n<td><strong>Value<\/strong><\/td>\n<td><strong>Description<\/strong><\/td>\n<\/tr>\n<tr>\n<td><em>_blank<\/em><\/td>\n<td>The response is displayed in a new window or tab<\/td>\n<\/tr>\n<tr>\n<td><em>_self<\/em><\/td>\n<td>The response is displayed in the same frame (this is default)<\/td>\n<\/tr>\n<tr>\n<td><em>_parent<\/em><\/td>\n<td>The response is displayed in the parent frame<\/td>\n<\/tr>\n<tr>\n<td>_<em>top<\/em><\/td>\n<td>The response is displayed in the full body of the window<\/td>\n<\/tr>\n<tr>\n<td><em><strong><sup>framename<\/sup><\/strong><\/em><\/td>\n<td>The response is displayed in a named iframe<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/figure>\n\n<p class=\"wp-block-paragraph\">Note: The target attribute was <strong><em>deprecated<\/em><\/strong> in <strong>HTML 4.01.<\/strong> The target attribute is <strong><em>supported<\/em><\/strong> in <strong>HTML5.<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">Frames and framesets are not supported in <strong>HTML5,<\/strong> so the <em><strong>_parent,<\/strong> <strong>_top and framename values are now<br \/>mostly used with iframes.<\/strong><\/em><\/p>\n\n<h2 class=\"wp-block-heading\" id=\"h-uploading-files\">Uploading Files<\/h2>\n\n<p class=\"wp-block-paragraph\">mages and files can be uploaded\/submitted to server by setting enctype attribute of <em>form<\/em> tag to <em>multipart\/form-data. enctype<\/em> specifies how form data would be encoded while submitting to the server.<\/p>\n\n<p class=\"wp-block-paragraph\"><strong>Example<\/strong><\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">form method=\"post\" enctype=\"multipart\/form-data\" action=\"upload.php\"&gt;\n &lt;input type=\"file\" name=\"pic\" \/&gt;\n &lt;input type=\"submit\" value=\"Upload\" \/&gt;\n&lt;\/form&gt;\n<\/pre>\n\n<h2 class=\"wp-block-heading\" id=\"h-grouping-a-few-input-fields\">Grouping a few input fields<\/h2>\n\n<p class=\"wp-block-paragraph\">While designing a form, you might like to group a few input fields into a group to help organise the form layout.<br \/>This can be done by using the tag . Here is an example for using it.<\/p>\n\n<p class=\"wp-block-paragraph\">For each fieldset, you can set a legend for the set using the tag LEGEND TEXT<\/p>\n\n<p class=\"wp-block-paragraph\"><strong>Example<\/strong><\/p>\n\n<pre data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;form&gt;\n &lt;fieldset&gt;\n &lt;legend&gt;1st field set:&lt;\/legend&gt;\n Field one:&lt;br&gt;\n &lt;input type=\"text\"&gt;&lt;br&gt;GoalKicker.com \u2013 HTML5 Notes for Professionals 56\n Field two:&lt;br&gt;\n &lt;input type=\"text\"&gt;&lt;br&gt;\n &lt;\/fieldset&gt;&lt;br&gt;\n &lt;fieldset&gt;\n &lt;legend&gt;2nd field set:&lt;\/legend&gt;\n Field three:&lt;br&gt;\n &lt;input type=\"text\"&gt;&lt;br&gt;\n Field four:&lt;br&gt;\n &lt;input type=\"text\"&gt;&lt;br&gt;\n &lt;\/fieldset&gt;&lt;br&gt;\n &lt;input type=\"submit\" value=\"Submit\"&gt;\n&lt;\/form&gt;<\/pre>\n\n<p class=\"wp-block-paragraph\"><strong>Result<\/strong><\/p>\n\n<figure><img decoding=\"async\" src=\"https:\/\/digitalhubz.com\/wp-content\/uploads\/2021\/06\/wp-pro2.png\" alt=\"\" \/><\/figure>\n\n<p class=\"wp-block-paragraph\"><strong>Browser Support<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">Chrome, IE, Edge, FireFox, Safari and Opera&#8217;s latest versions also supports the tag<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Attribute Description accept-charset Specifies the character encodings that are to be used for the form submission. action Specifies where to send the form-data when a form is submitted. autocomplete Specifies&hellip;<\/p>\n","protected":false},"author":1,"featured_media":528,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[73,76,111,77],"tags":[110,112,136,113],"class_list":["post-402","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-css","category-html","category-html-5-notes-for-professional","category-javascript","tag-html-5-notes","tag-html-5-tutorial","tag-html-resources","tag-html5"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.9) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Chapter 18: Forms - DigitalHubZ<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.digitalhubz.com\/blog\/chapter-18-forms\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Chapter 18: Forms\" \/>\n<meta property=\"og:description\" content=\"Attribute Description accept-charset Specifies the character encodings that are to be used for the form submission. action Specifies where to send the form-data when a form is submitted. autocomplete Specifies&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.digitalhubz.com\/blog\/chapter-18-forms\/\" \/>\n<meta property=\"og:site_name\" content=\"DigitalHubZ\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-09T06:06:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-26T10:44:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2021\/07\/HTML-5-Notes-For-Professional-Chapter-18.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"945\" \/>\n\t<meta property=\"og:image:height\" content=\"394\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"DigitalHubZ\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DigitalHubZ\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-18-forms\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-18-forms\\\/\"},\"author\":{\"name\":\"DigitalHubZ\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#\\\/schema\\\/person\\\/5a4074d837d6e5d22d665e5b7ca9e873\"},\"headline\":\"Chapter 18: Forms\",\"datePublished\":\"2021-07-09T06:06:53+00:00\",\"dateModified\":\"2026-02-26T10:44:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-18-forms\\\/\"},\"wordCount\":584,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-18-forms\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/HTML-5-Notes-For-Professional-Chapter-18.jpg\",\"keywords\":[\"HTML 5 Notes\",\"HTML 5 Tutorial\",\"HTML Resources\",\"HTML5\"],\"articleSection\":[\"CSS\",\"HTML\",\"HTML 5 Notes For Professional\",\"Javascript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-18-forms\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-18-forms\\\/\",\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-18-forms\\\/\",\"name\":\"Chapter 18: Forms - DigitalHubZ\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-18-forms\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-18-forms\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/HTML-5-Notes-For-Professional-Chapter-18.jpg\",\"datePublished\":\"2021-07-09T06:06:53+00:00\",\"dateModified\":\"2026-02-26T10:44:32+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-18-forms\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-18-forms\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-18-forms\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/HTML-5-Notes-For-Professional-Chapter-18.jpg\",\"contentUrl\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/HTML-5-Notes-For-Professional-Chapter-18.jpg\",\"width\":945,\"height\":394},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/chapter-18-forms\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Chapter 18: Forms\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/\",\"name\":\"DigitalHubZ\",\"description\":\"Future-Ready Digital Solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#organization\",\"name\":\"DigitalHubZ\",\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/digitalhubz.webp\",\"contentUrl\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/digitalhubz.webp\",\"width\":1232,\"height\":369,\"caption\":\"DigitalHubZ\"},\"image\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#\\\/schema\\\/person\\\/5a4074d837d6e5d22d665e5b7ca9e873\",\"name\":\"DigitalHubZ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g\",\"caption\":\"DigitalHubZ\"},\"sameAs\":[\"https:\\\/\\\/digitalhubz.com\"],\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/author\\\/digi_v1_wp\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Chapter 18: Forms - DigitalHubZ","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:\/\/www.digitalhubz.com\/blog\/chapter-18-forms\/","og_locale":"en_US","og_type":"article","og_title":"Chapter 18: Forms","og_description":"Attribute Description accept-charset Specifies the character encodings that are to be used for the form submission. action Specifies where to send the form-data when a form is submitted. autocomplete Specifies&hellip;","og_url":"https:\/\/www.digitalhubz.com\/blog\/chapter-18-forms\/","og_site_name":"DigitalHubZ","article_published_time":"2021-07-09T06:06:53+00:00","article_modified_time":"2026-02-26T10:44:32+00:00","og_image":[{"width":945,"height":394,"url":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2021\/07\/HTML-5-Notes-For-Professional-Chapter-18.jpg","type":"image\/jpeg"}],"author":"DigitalHubZ","twitter_card":"summary_large_image","twitter_misc":{"Written by":"DigitalHubZ","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.digitalhubz.com\/blog\/chapter-18-forms\/#article","isPartOf":{"@id":"https:\/\/www.digitalhubz.com\/blog\/chapter-18-forms\/"},"author":{"name":"DigitalHubZ","@id":"https:\/\/www.digitalhubz.com\/blog\/#\/schema\/person\/5a4074d837d6e5d22d665e5b7ca9e873"},"headline":"Chapter 18: Forms","datePublished":"2021-07-09T06:06:53+00:00","dateModified":"2026-02-26T10:44:32+00:00","mainEntityOfPage":{"@id":"https:\/\/www.digitalhubz.com\/blog\/chapter-18-forms\/"},"wordCount":584,"commentCount":0,"publisher":{"@id":"https:\/\/www.digitalhubz.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.digitalhubz.com\/blog\/chapter-18-forms\/#primaryimage"},"thumbnailUrl":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2021\/07\/HTML-5-Notes-For-Professional-Chapter-18.jpg","keywords":["HTML 5 Notes","HTML 5 Tutorial","HTML Resources","HTML5"],"articleSection":["CSS","HTML","HTML 5 Notes For Professional","Javascript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.digitalhubz.com\/blog\/chapter-18-forms\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.digitalhubz.com\/blog\/chapter-18-forms\/","url":"https:\/\/www.digitalhubz.com\/blog\/chapter-18-forms\/","name":"Chapter 18: Forms - DigitalHubZ","isPartOf":{"@id":"https:\/\/www.digitalhubz.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.digitalhubz.com\/blog\/chapter-18-forms\/#primaryimage"},"image":{"@id":"https:\/\/www.digitalhubz.com\/blog\/chapter-18-forms\/#primaryimage"},"thumbnailUrl":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2021\/07\/HTML-5-Notes-For-Professional-Chapter-18.jpg","datePublished":"2021-07-09T06:06:53+00:00","dateModified":"2026-02-26T10:44:32+00:00","breadcrumb":{"@id":"https:\/\/www.digitalhubz.com\/blog\/chapter-18-forms\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.digitalhubz.com\/blog\/chapter-18-forms\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.digitalhubz.com\/blog\/chapter-18-forms\/#primaryimage","url":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2021\/07\/HTML-5-Notes-For-Professional-Chapter-18.jpg","contentUrl":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2021\/07\/HTML-5-Notes-For-Professional-Chapter-18.jpg","width":945,"height":394},{"@type":"BreadcrumbList","@id":"https:\/\/www.digitalhubz.com\/blog\/chapter-18-forms\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.digitalhubz.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Chapter 18: Forms"}]},{"@type":"WebSite","@id":"https:\/\/www.digitalhubz.com\/blog\/#website","url":"https:\/\/www.digitalhubz.com\/blog\/","name":"DigitalHubZ","description":"Future-Ready Digital Solutions","publisher":{"@id":"https:\/\/www.digitalhubz.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.digitalhubz.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.digitalhubz.com\/blog\/#organization","name":"DigitalHubZ","url":"https:\/\/www.digitalhubz.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.digitalhubz.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2023\/03\/digitalhubz.webp","contentUrl":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2023\/03\/digitalhubz.webp","width":1232,"height":369,"caption":"DigitalHubZ"},"image":{"@id":"https:\/\/www.digitalhubz.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.digitalhubz.com\/blog\/#\/schema\/person\/5a4074d837d6e5d22d665e5b7ca9e873","name":"DigitalHubZ","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g","caption":"DigitalHubZ"},"sameAs":["https:\/\/digitalhubz.com"],"url":"https:\/\/www.digitalhubz.com\/blog\/author\/digi_v1_wp\/"}]}},"_links":{"self":[{"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/posts\/402","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/comments?post=402"}],"version-history":[{"count":4,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/posts\/402\/revisions"}],"predecessor-version":[{"id":54811,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/posts\/402\/revisions\/54811"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/media\/528"}],"wp:attachment":[{"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/media?parent=402"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/categories?post=402"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/tags?post=402"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}