aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/html/element/form
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2021-08-02 10:43:09 -0400
committerGitHub <noreply@github.com>2021-08-02 11:43:09 -0300
commit28b935d9dca4bb27b8f53b4f211c004e233f52e4 (patch)
tree3d5de50b13c51c9527af014cf05947b4daef6f5d /files/pt-br/web/html/element/form
parent434acdbb5b298229fbbf126e893603024bbee26c (diff)
downloadtranslated-content-28b935d9dca4bb27b8f53b4f211c004e233f52e4.tar.gz
translated-content-28b935d9dca4bb27b8f53b4f211c004e233f52e4.tar.bz2
translated-content-28b935d9dca4bb27b8f53b4f211c004e233f52e4.zip
remove link 'title' attributes that's just the 'href' (pt-br, part 2) (#1841)
Diffstat (limited to 'files/pt-br/web/html/element/form')
-rw-r--r--files/pt-br/web/html/element/form/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/pt-br/web/html/element/form/index.html b/files/pt-br/web/html/element/form/index.html
index 0097e77db8..307c7672a7 100644
--- a/files/pt-br/web/html/element/form/index.html
+++ b/files/pt-br/web/html/element/form/index.html
@@ -43,7 +43,7 @@ translation_of: Web/HTML/Element/form
</div>
</dd>
<dt>{{htmlattrdef("enctype")}}</dt>
- <dd>When the value of the <code>method</code> attribute is <code>post</code>, this attribute is the <a href="http://en.wikipedia.org/wiki/Mime_type" title="http://en.wikipedia.org/wiki/Mime_type">MIME type</a> of content that is used to submit the form to the server. Possible values are:
+ <dd>When the value of the <code>method</code> attribute is <code>post</code>, this attribute is the <a href="http://en.wikipedia.org/wiki/Mime_type">MIME type</a> of content that is used to submit the form to the server. Possible values are:
<ul>
<li><code>application/x-www-form-urlencoded</code>: The default value if the attribute is not specified.</li>
<li><code>multipart/form-data</code>: Use this value if you are using an {{HTMLElement("input")}} element with the <code>type</code> attribute set to "file".</li>
@@ -55,8 +55,8 @@ translation_of: Web/HTML/Element/form
<dt>{{htmlattrdef("method")}}</dt>
<dd>O <a href="/en-US/docs/HTTP" title="http://www.w3.org/Protocols/rfc2616/rfc2616.html">HTTP</a> method that the browser uses to submit the form. Possible values are:
<ul>
- <li><code>post</code>: Corresponds to the HTTP <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.5" title="http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.5">POST method</a> ; the data from the form is included in the body of the form and is sent to the server.</li>
- <li><code>get</code>: Corresponds to the HTTP <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.3" title="http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.3">GET method</a>; the data from the form are appended to the <code>action</code> attribute URI, with a '?' as a separator, and the resulting URI is sent to the server. Use this method when the form has no side-effects and contains only ASCII characters.</li>
+ <li><code>post</code>: Corresponds to the HTTP <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.5">POST method</a> ; the data from the form is included in the body of the form and is sent to the server.</li>
+ <li><code>get</code>: Corresponds to the HTTP <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.3">GET method</a>; the data from the form are appended to the <code>action</code> attribute URI, with a '?' as a separator, and the resulting URI is sent to the server. Use this method when the form has no side-effects and contains only ASCII characters.</li>
</ul>
<p>This value can be overridden by a {{htmlattrxref("formmethod", "button")}} attribute on a {{HTMLElement("button")}} or {{HTMLElement("input")}} element.</p>