<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>htmlform Archives - SoftUni Global</title>
	<atom:link href="https://softuni.org/tag/htmlform/feed/" rel="self" type="application/rss+xml" />
	<link>https://softuni.org/tag/htmlform/</link>
	<description>Learn Programming and Start a Developer Job</description>
	<lastBuildDate>Thu, 30 Jun 2022 14:23:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://softuni.org/wp-content/uploads/2022/04/cropped-SoftUni-Global-Logo-Square-notext-32x32.png</url>
	<title>htmlform Archives - SoftUni Global</title>
	<link>https://softuni.org/tag/htmlform/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Handling an HTML Form – GET and POST Methods, and Data Encoding [Dev Concepts #38]</title>
		<link>https://softuni.org/dev-concepts/handling-an-html-form/</link>
					<comments>https://softuni.org/dev-concepts/handling-an-html-form/#respond</comments>
		
		<dc:creator><![CDATA[Nikol Ruseva]]></dc:creator>
		<pubDate>Thu, 30 Jun 2022 06:00:00 +0000</pubDate>
				<category><![CDATA[Dev Concepts]]></category>
		<category><![CDATA[dataencoding]]></category>
		<category><![CDATA[devconcept]]></category>
		<category><![CDATA[formdata]]></category>
		<category><![CDATA[formmethods]]></category>
		<category><![CDATA[htmlform]]></category>
		<category><![CDATA[httprequest]]></category>
		<category><![CDATA[httpresponse]]></category>
		<category><![CDATA[networkinspector]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software engineering]]></category>
		<guid isPermaLink="false">https://softuni.org/?p=21526</guid>

					<description><![CDATA[<p>In this lesson, we discuss HTML Forms and how to use GET and POST methods to send encoded data to the server for processing.</p>
<p>The post <a href="https://softuni.org/dev-concepts/handling-an-html-form/">Handling an HTML Form – GET and POST Methods, and Data Encoding [Dev Concepts #38]</a> appeared first on <a href="https://softuni.org">SoftUni Global</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="21526" class="elementor elementor-21526" data-elementor-post-type="post">
						<section class="elementor-section elementor-top-section elementor-element elementor-element-5d5405e elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5d5405e" data-element_type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-0d32134" data-id="0d32134" data-element_type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-9216798 elementor-widget elementor-widget-text-editor" data-id="9216798" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>HTML Forms are used to <strong>collect </strong>input from users and <strong>send</strong> it to the server for processing. <br />Examples are <strong>registration form</strong> that users fill out to sign up on a website and<strong> order submission forms </strong>on e-commerce sites.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-88292b4 elementor-widget elementor-widget-video" data-id="88292b4" data-element_type="widget" data-settings="{&quot;youtube_url&quot;:&quot;https:\/\/www.youtube.com\/watch?v=gs_cpvOv63g&quot;,&quot;video_type&quot;:&quot;youtube&quot;,&quot;controls&quot;:&quot;yes&quot;}" data-widget_type="video.default">
				<div class="elementor-widget-container">
							<div class="elementor-wrapper elementor-open-inline">
			<div class="elementor-video"></div>		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-dc9b80c elementor-widget elementor-widget-spacer" data-id="dc9b80c" data-element_type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
							<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-f6eb159 elementor-widget elementor-widget-heading" data-id="f6eb159" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-xl">HTML Form Structure</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-c3c81fe elementor-widget elementor-widget-text-editor" data-id="c3c81fe" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>HTML has <strong>input elements</strong> displayed in different ways such as <strong>input</strong> <strong>field</strong>, <strong>checkbox</strong> (for selecting zero or more of multiple choices), <strong>radio</strong> <strong>buttons</strong> (for selecting one of multiple choices), <strong>submit</strong> <strong>button</strong> etc. The basic structure of a form consists of <strong>input fields</strong> and a <strong>submit button</strong>. The user fills out the input fields with <strong>the required information</strong> and upon clicking the <strong>submit</strong> <strong>button</strong> the data is sent to a <strong>form</strong> <strong>handler</strong>. Typically, the form handler is a <strong>file</strong> on the server with a <strong>script</strong> for processing input data.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-edfa28d elementor-widget elementor-widget-image" data-id="edfa28d" data-element_type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img fetchpriority="high" decoding="async" width="1024" height="570" src="https://softuni.org/wp-content/uploads/2022/06/HTML-Forms-Structure-e1656488599535.png" class="attachment-large size-large wp-image-21598" alt="HTML Forms Structure" srcset="https://softuni.org/wp-content/uploads/2022/06/HTML-Forms-Structure-e1656488599535.png 1024w, https://softuni.org/wp-content/uploads/2022/06/HTML-Forms-Structure-e1656488599535-300x167.png 300w, https://softuni.org/wp-content/uploads/2022/06/HTML-Forms-Structure-e1656488599535-768x428.png 768w, https://softuni.org/wp-content/uploads/2022/06/HTML-Forms-Structure-e1656488599535-600x334.png 600w" sizes="(max-width: 1024px) 100vw, 1024px" />															</div>
				</div>
				<div class="elementor-element elementor-element-8199816 elementor-widget elementor-widget-heading" data-id="8199816" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-xl">Form Action Attribute</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-2c52016 elementor-widget elementor-widget-text-editor" data-id="2c52016" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><!-- [if gte mso 9]><xml><br /> <o:OfficeDocumentSettings><br />  <o:RelyOnVML/><br />  <o:AllowPNG/><br /> </o:OfficeDocumentSettings><br /></xml><![endif]--><!-- [if gte mso 9]><xml><br /> <w:WordDocument><br />  <w:View>Normal</w:View><br />  <w:Zoom>0</w:Zoom><br />  <w:TrackMoves/><br />  <w:TrackFormatting/><br />  <w:HyphenationZone>21</w:HyphenationZone><br />  <w:PunctuationKerning/><br />  <w:ValidateAgainstSchemas/><br />  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid><br />  <w:IgnoreMixedContent>false</w:IgnoreMixedContent><br />  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText><br />  <w:DoNotPromoteQF/><br />  <w:LidThemeOther>BG</w:LidThemeOther><br />  <w:LidThemeAsian>JA</w:LidThemeAsian><br />  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript><br />  <w:Compatibility><br />   <w:BreakWrappedTables/><br />   <w:SnapToGridInCell/><br />   <w:WrapTextWithPunct/><br />   <w:UseAsianBreakRules/><br />   <w:DontGrowAutofit/><br />   <w:SplitPgBreakAndParaMark/><br />   <w:EnableOpenTypeKerning/><br />   <w:DontFlipMirrorIndents/><br />   <w:OverrideTableStyleHps/><br />   <w:UseFELayout/><br />  </w:Compatibility><br />  <m:mathPr><br />   <m:mathFont m:val="Cambria Math"/><br />   <m:brkBin m:val="before"/><br />   <m:brkBinSub m:val="--"/><br />   <m:smallFrac m:val="off"/><br />   <m:dispDef/><br />   <m:lMargin m:val="0"/><br />   <m:rMargin m:val="0"/><br />   <m:defJc m:val="centerGroup"/><br />   <m:wrapIndent m:val="1440"/><br />   <m:intLim m:val="subSup"/><br />   <m:naryLim m:val="undOvr"/><br />  </m:mathPr></w:WordDocument><br /></xml><![endif]--><!-- [if gte mso 9]><xml><br /> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="false" DefSemiHidden="false" DefQFormat="false" DefPriority="99" LatentStyleCount="371"><br />  <w:LsdException Locked="false" Priority="0" QFormat="true" Name="Normal"/><br />  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 1"/><br />  <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 2"/><br />  <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 3"/><br />  <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 4"/><br />  <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 5"/><br />  <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 6"/><br />  <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 7"/><br />  <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 8"/><br />  <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 9"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 1"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 2"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 3"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 4"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 5"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 6"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 7"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 8"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 9"/><br />  <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 1"/><br />  <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 2"/><br />  <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 3"/><br />  <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 4"/><br />  <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 5"/><br />  <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 6"/><br />  <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 7"/><br />  <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 8"/><br />  <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 9"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal Indent"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footnote text"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation text"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="header"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footer"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index heading"/><br />  <w:LsdException Locked="false" Priority="35" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="caption"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="table of figures"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="envelope address"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="envelope return"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footnote reference"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation reference"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="line number"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="page number"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="endnote reference"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="endnote text"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="table of authorities"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="macro"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="toa heading"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 2"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 3"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 4"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 5"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 2"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 3"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 4"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 5"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 2"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 3"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 4"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 5"/><br />  <w:LsdException Locked="false" Priority="10" QFormat="true" Name="Title"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Closing"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Signature"/><br />  <w:LsdException Locked="false" Priority="1" SemiHidden="true" UnhideWhenUsed="true" Name="Default Paragraph Font"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 2"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 3"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 4"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 5"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Message Header"/><br />  <w:LsdException Locked="false" Priority="11" QFormat="true" Name="Subtitle"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Salutation"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Date"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text First Indent"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text First Indent 2"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Note Heading"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text 2"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text 3"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent 2"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent 3"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Block Text"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Hyperlink"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="FollowedHyperlink"/><br />  <w:LsdException Locked="false" Priority="22" QFormat="true" Name="Strong"/><br />  <w:LsdException Locked="false" Priority="20" QFormat="true" Name="Emphasis"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Document Map"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Plain Text"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="E-mail Signature"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Top of Form"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Bottom of Form"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal (Web)"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Acronym"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Address"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Cite"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Code"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Definition"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Keyboard"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Preformatted"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Sample"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Typewriter"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Variable"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal Table"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation subject"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="No List"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 1"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 2"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 3"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 1"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 2"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 3"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 1"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 2"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 3"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 4"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 1"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 2"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 3"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 1"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 2"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 3"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 4"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 5"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 1"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 2"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 3"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 4"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 5"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 6"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 7"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 8"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 1"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 2"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 3"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 4"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 5"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 6"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 7"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 8"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 1"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 2"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 3"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Contemporary"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Elegant"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Professional"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Subtle 1"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Subtle 2"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 1"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 2"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 3"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Balloon Text"/><br />  <w:LsdException Locked="false" Priority="39" Name="Table Grid"/><br />  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Theme"/><br />  <w:LsdException Locked="false" SemiHidden="true" Name="Placeholder Text"/><br />  <w:LsdException Locked="false" Priority="1" QFormat="true" Name="No Spacing"/><br />  <w:LsdException Locked="false" Priority="60" Name="Light Shading"/><br />  <w:LsdException Locked="false" Priority="61" Name="Light List"/><br />  <w:LsdException Locked="false" Priority="62" Name="Light Grid"/><br />  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1"/><br />  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2"/><br />  <w:LsdException Locked="false" Priority="65" Name="Medium List 1"/><br />  <w:LsdException Locked="false" Priority="66" Name="Medium List 2"/><br />  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1"/><br />  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2"/><br />  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3"/><br />  <w:LsdException Locked="false" Priority="70" Name="Dark List"/><br />  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading"/><br />  <w:LsdException Locked="false" Priority="72" Name="Colorful List"/><br />  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid"/><br />  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 1"/><br />  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 1"/><br />  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 1"/><br />  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 1"/><br />  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 1"/><br />  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 1"/><br />  <w:LsdException Locked="false" SemiHidden="true" Name="Revision"/><br />  <w:LsdException Locked="false" Priority="34" QFormat="true" Name="List Paragraph"/><br />  <w:LsdException Locked="false" Priority="29" QFormat="true" Name="Quote"/><br />  <w:LsdException Locked="false" Priority="30" QFormat="true" Name="Intense Quote"/><br />  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 1"/><br />  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 1"/><br />  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 1"/><br />  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 1"/><br />  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 1"/><br />  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 1"/><br />  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 1"/><br />  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 1"/><br />  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 2"/><br />  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 2"/><br />  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 2"/><br />  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 2"/><br />  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 2"/><br />  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 2"/><br />  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 2"/><br />  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 2"/><br />  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 2"/><br />  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 2"/><br />  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 2"/><br />  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 2"/><br />  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 2"/><br />  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 2"/><br />  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 3"/><br />  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 3"/><br />  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 3"/><br />  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 3"/><br />  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 3"/><br />  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 3"/><br />  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 3"/><br />  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 3"/><br />  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 3"/><br />  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 3"/><br />  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 3"/><br />  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 3"/><br />  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 3"/><br />  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 3"/><br />  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 4"/><br />  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 4"/><br />  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 4"/><br />  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 4"/><br />  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 4"/><br />  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 4"/><br />  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 4"/><br />  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 4"/><br />  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 4"/><br />  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 4"/><br />  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 4"/><br />  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 4"/><br />  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 4"/><br />  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 4"/><br />  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 5"/><br />  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 5"/><br />  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 5"/><br />  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 5"/><br />  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 5"/><br />  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 5"/><br />  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 5"/><br />  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 5"/><br />  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 5"/><br />  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 5"/><br />  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 5"/><br />  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 5"/><br />  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 5"/><br />  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 5"/><br />  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 6"/><br />  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 6"/><br />  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 6"/><br />  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 6"/><br />  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 6"/><br />  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 6"/><br />  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 6"/><br />  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 6"/><br />  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 6"/><br />  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 6"/><br />  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 6"/><br />  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 6"/><br />  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 6"/><br />  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 6"/><br />  <w:LsdException Locked="false" Priority="19" QFormat="true" Name="Subtle Emphasis"/><br />  <w:LsdException Locked="false" Priority="21" QFormat="true" Name="Intense Emphasis"/><br />  <w:LsdException Locked="false" Priority="31" QFormat="true" Name="Subtle Reference"/><br />  <w:LsdException Locked="false" Priority="32" QFormat="true" Name="Intense Reference"/><br />  <w:LsdException Locked="false" Priority="33" QFormat="true" Name="Book Title"/><br />  <w:LsdException Locked="false" Priority="37" SemiHidden="true" UnhideWhenUsed="true" Name="Bibliography"/><br />  <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="TOC Heading"/><br />  <w:LsdException Locked="false" Priority="41" Name="Plain Table 1"/><br />  <w:LsdException Locked="false" Priority="42" Name="Plain Table 2"/><br />  <w:LsdException Locked="false" Priority="43" Name="Plain Table 3"/><br />  <w:LsdException Locked="false" Priority="44" Name="Plain Table 4"/><br />  <w:LsdException Locked="false" Priority="45" Name="Plain Table 5"/><br />  <w:LsdException Locked="false" Priority="40" Name="Grid Table Light"/><br />  <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light"/><br />  <w:LsdException Locked="false" Priority="47" Name="Grid Table 2"/><br />  <w:LsdException Locked="false" Priority="48" Name="Grid Table 3"/><br />  <w:LsdException Locked="false" Priority="49" Name="Grid Table 4"/><br />  <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark"/><br />  <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful"/><br />  <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful"/><br />  <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 1"/><br />  <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 1"/><br />  <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 1"/><br />  <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 1"/><br />  <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 1"/><br />  <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 1"/><br />  <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 1"/><br />  <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 2"/><br />  <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 2"/><br />  <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 2"/><br />  <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 2"/><br />  <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 2"/><br />  <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 2"/><br />  <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 2"/><br />  <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 3"/><br />  <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 3"/><br />  <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 3"/><br />  <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 3"/><br />  <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 3"/><br />  <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 3"/><br />  <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 3"/><br />  <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 4"/><br />  <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 4"/><br />  <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 4"/><br />  <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 4"/><br />  <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 4"/><br />  <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 4"/><br />  <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 4"/><br />  <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 5"/><br />  <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 5"/><br />  <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 5"/><br />  <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 5"/><br />  <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 5"/><br />  <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 5"/><br />  <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 5"/><br />  <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 6"/><br />  <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 6"/><br />  <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 6"/><br />  <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 6"/><br />  <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 6"/><br />  <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 6"/><br />  <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 6"/><br />  <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light"/><br />  <w:LsdException Locked="false" Priority="47" Name="List Table 2"/><br />  <w:LsdException Locked="false" Priority="48" Name="List Table 3"/><br />  <w:LsdException Locked="false" Priority="49" Name="List Table 4"/><br />  <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark"/><br />  <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful"/><br />  <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful"/><br />  <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 1"/><br />  <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 1"/><br />  <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 1"/><br />  <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 1"/><br />  <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 1"/><br />  <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 1"/><br />  <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 1"/><br />  <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 2"/><br />  <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 2"/><br />  <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 2"/><br />  <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 2"/><br />  <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 2"/><br />  <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 2"/><br />  <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 2"/><br />  <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 3"/><br />  <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 3"/><br />  <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 3"/><br />  <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 3"/><br />  <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 3"/><br />  <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 3"/><br />  <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 3"/><br />  <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 4"/><br />  <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 4"/><br />  <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 4"/><br />  <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 4"/><br />  <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 4"/><br />  <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 4"/><br />  <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 4"/><br />  <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 5"/><br />  <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 5"/><br />  <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 5"/><br />  <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 5"/><br />  <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 5"/><br />  <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 5"/><br />  <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 5"/><br />  <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 6"/><br />  <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 6"/><br />  <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 6"/><br />  <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 6"/><br />  <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 6"/><br />  <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 6"/><br />  <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 6"/><br /> </w:LatentStyles><br /></xml><![endif]--><!-- [if gte mso 10]></p>
<style>
 /* Style Definitions */<br /> table.MsoNormalTable<br />	{mso-style-name:"Table Normal";<br />	mso-tstyle-rowband-size:0;<br />	mso-tstyle-colband-size:0;<br />	mso-style-noshow:yes;<br />	mso-style-priority:99;<br />	mso-style-parent:"";<br />	mso-padding-alt:0cm 5.4pt 0cm 5.4pt;<br />	mso-para-margin-top:0cm;<br />	mso-para-margin-right:0cm;<br />	mso-para-margin-bottom:8.0pt;<br />	mso-para-margin-left:0cm;<br />	line-height:107%;<br />	mso-pagination:widow-orphan;<br />	font-size:11.0pt;<br />	font-family:"Calibri",sans-serif;<br />	mso-ascii-font-family:Calibri;<br />	mso-ascii-theme-font:minor-latin;<br />	mso-hansi-font-family:Calibri;<br />	mso-hansi-theme-font:minor-latin;<br />	mso-bidi-font-family:"Times New Roman";<br />	mso-bidi-theme-font:minor-bidi;}<br /></style>
<p><![endif]--></p><p>You add an <strong>action</strong> <strong>attribute</strong> to the form to define where the submitted data goes. In the example above the submitted information will be <strong>handled</strong> by the script of the <strong>home.html</strong> document.</p><p>In this case, the URL is called <strong>relative</strong>. Relative URLs are compared to the <strong>current</strong> <strong>URL</strong> that is loaded in the Web browser. We can use <strong>slashes</strong> and the &#8220;<strong>double</strong> <strong>dot</strong>&#8221; notation to address a different folder or the parent folder of the virtual folder structure on the Web server.</p><p><b><span lang="EN-US" style="mso-ansi-language: EN-US;">Full URLs </span></b><span lang="EN-US" style="mso-ansi-language: EN-US;">are used to submit the form data to completely <strong>different</strong> <strong>Web</strong> <strong>site</strong>. For example, a Web site may embed an HTML form for newsletter subscription which submits its form fields to an <strong>external</strong> Web site, which provides email newsletter services.</span></p>								</div>
				</div>
				<div class="elementor-element elementor-element-d1d71e5 elementor-widget elementor-widget-heading" data-id="d1d71e5" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-xl">Form Method Attribute</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-aee5286 elementor-widget elementor-widget-text-editor" data-id="aee5286" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>In the following example, we have added an HTTP <strong>method</strong> <strong>attribute</strong> to the form. The method can be either <strong>GET</strong> or <strong>POST</strong>. Both methods are used to <strong>transfer</strong> <strong>data</strong> from client to server.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-73e2af2 elementor-widget elementor-widget-image" data-id="73e2af2" data-element_type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img decoding="async" width="1024" height="483" src="https://softuni.org/wp-content/uploads/2022/06/Adding-Method-To-HTML-Forms-e1656487470842.png" class="attachment-large size-large wp-image-21590" alt="" srcset="https://softuni.org/wp-content/uploads/2022/06/Adding-Method-To-HTML-Forms-e1656487470842.png 1024w, https://softuni.org/wp-content/uploads/2022/06/Adding-Method-To-HTML-Forms-e1656487470842-300x142.png 300w, https://softuni.org/wp-content/uploads/2022/06/Adding-Method-To-HTML-Forms-e1656487470842-768x362.png 768w, https://softuni.org/wp-content/uploads/2022/06/Adding-Method-To-HTML-Forms-e1656487470842-600x283.png 600w" sizes="(max-width: 1024px) 100vw, 1024px" />															</div>
				</div>
				<div class="elementor-element elementor-element-dbafd5f elementor-widget elementor-widget-text-editor" data-id="dbafd5f" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>The <strong>GET</strong> method transfers data in the URL with a <strong>query</strong> <strong>string</strong>. Therefore, the <strong>length</strong> of the URL <strong>is</strong> <strong>limited</strong>. GET is preferable for images, word documents or data that does not require any security.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-87e0925 elementor-widget elementor-widget-text-editor" data-id="87e0925" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><strong>POST</strong> is an HTTP method that encodes form data in a <strong>specified</strong> <strong>format</strong> and sends it to the server via the <strong>HTTP</strong> <strong>message</strong> <strong>body</strong>. The World Wide Web frequently uses POST to send <strong>user-generated data</strong> or an <strong>uploaded</strong> <strong>file</strong> to the web server.</p><p>In the example above, you can see the standard <strong>URL encoding</strong> used to encode the HTML form fields and URLs. The URL encoding is a long string of <strong>name</strong> and <strong>value</strong> <strong>pairs</strong>. Each pair is separated from one another by an ampersand (&amp;) sign and each name is separated from the value by an equals (=) sign. For example: <strong>key1</strong>=<strong>value1</strong>&amp;<strong>key2</strong>=<strong>value2</strong>.</p><p>This <strong>encoding </strong>can be used for text and other data fields, but it does not support <strong>file upload fields.</strong> We can overcome this limitation by switching to <strong>multipart encoding.</strong></p>								</div>
				</div>
				<div class="elementor-element elementor-element-d4f085b elementor-widget elementor-widget-spacer" data-id="d4f085b" data-element_type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
							<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-103ecbb elementor-widget elementor-widget-heading" data-id="103ecbb" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-xl">Differences Between GET and POST Methods</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-fe937c1 elementor-widget elementor-widget-text-editor" data-id="fe937c1" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>If you want to send one or two <strong>simple</strong> <strong>variables</strong> (for example search parameters) to your server, then you <strong>use</strong> <strong>GET</strong>. However, if your form includes <strong>passwords</strong>, <strong>credit</strong> <strong>card</strong> <strong>information</strong>, or any other data that needs extra <strong>protection</strong> then <strong>POST</strong> is a better choice. You can see a side to side <strong>comparison</strong> between the two methods in the example below.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-855b4b6 elementor-widget elementor-widget-spacer" data-id="855b4b6" data-element_type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
							<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-ff5d40e elementor-widget elementor-widget-image" data-id="ff5d40e" data-element_type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img decoding="async" width="1024" height="768" src="https://softuni.org/wp-content/uploads/2022/06/GET-and-POST-Methods-Comparison.png" class="attachment-large size-large wp-image-21600" alt="GET and POST Methods Comparison" srcset="https://softuni.org/wp-content/uploads/2022/06/GET-and-POST-Methods-Comparison.png 1024w, https://softuni.org/wp-content/uploads/2022/06/GET-and-POST-Methods-Comparison-300x225.png 300w, https://softuni.org/wp-content/uploads/2022/06/GET-and-POST-Methods-Comparison-768x576.png 768w, https://softuni.org/wp-content/uploads/2022/06/GET-and-POST-Methods-Comparison-600x450.png 600w" sizes="(max-width: 1024px) 100vw, 1024px" />															</div>
				</div>
				<div class="elementor-element elementor-element-c7e7d1a elementor-widget elementor-widget-spacer" data-id="c7e7d1a" data-element_type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
							<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-551543a elementor-widget elementor-widget-heading" data-id="551543a" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-xl">Lesson Topics</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-4a0f072 elementor-widget elementor-widget-text-editor" data-id="4a0f072" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<div><div>In this tutorial, we cover the following topics:</div></div><ul><li><p><strong>HTML Form Structure<br /></strong></p></li><li><p><strong>Form Action Attribute<br /></strong></p></li><li><p><strong>Form Method Attribute</strong></p></li><li><strong>Differences Between GET and POST Methods</strong></li></ul>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-3381a86 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3381a86" data-element_type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-0cf09e3" data-id="0cf09e3" data-element_type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-5b63bc4 elementor-widget elementor-widget-spacer" data-id="5b63bc4" data-element_type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
							<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-a0aff0b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="a0aff0b" data-element_type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-48c6c18" data-id="48c6c18" data-element_type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-de5c938 elementor-widget elementor-widget-heading" data-id="de5c938" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-xl">Lesson Slides</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-37e6760 elementor-widget elementor-widget-pdfjs_viewer" data-id="37e6760" data-element_type="widget" data-widget_type="pdfjs_viewer.default">
				<div class="elementor-widget-container">
					<iframe src="https://softuni.org/wp-content/plugins/pdf-viewer-for-elementor/assets/pdfjs/web/viewer.html?file=https://softuni.org/wp-content/uploads/2022/06/Dev-Concepts-Episode-38-HTML-Form-Submissions.pdf&amp;embedded=true" style="display: block; margin-left: auto; margin-right: auto; width: 100%; height: 800px;" frameborder="1" marginheight="0px" marginwidth="0px" allowfullscreen></iframe>				</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		<p>The post <a href="https://softuni.org/dev-concepts/handling-an-html-form/">Handling an HTML Form – GET and POST Methods, and Data Encoding [Dev Concepts #38]</a> appeared first on <a href="https://softuni.org">SoftUni Global</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://softuni.org/dev-concepts/handling-an-html-form/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 
Lazy Loading (feed)

Served from: softuni.org @ 2026-05-30 18:21:57 by W3 Total Cache
-->