aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/learn/forms
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2021-08-02 11:42:34 -0400
committerGitHub <noreply@github.com>2021-08-02 12:42:34 -0300
commit038ca04f4d551f547894b71d337b822d66c8a2b5 (patch)
treebea3dad86f98170e2a2fffa04324586a18e75600 /files/pt-br/learn/forms
parent6e961125c89cdc8c3f644bff485254b3b4afee67 (diff)
downloadtranslated-content-038ca04f4d551f547894b71d337b822d66c8a2b5.tar.gz
translated-content-038ca04f4d551f547894b71d337b822d66c8a2b5.tar.bz2
translated-content-038ca04f4d551f547894b71d337b822d66c8a2b5.zip
remove link 'title' attributes that's just the 'href' (pt-br, part 4) (#1844)
Diffstat (limited to 'files/pt-br/learn/forms')
-rw-r--r--files/pt-br/learn/forms/how_to_build_custom_form_controls/index.html2
-rw-r--r--files/pt-br/learn/forms/sending_and_retrieving_form_data/index.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/files/pt-br/learn/forms/how_to_build_custom_form_controls/index.html b/files/pt-br/learn/forms/how_to_build_custom_form_controls/index.html
index d28d43acad..24503747e8 100644
--- a/files/pt-br/learn/forms/how_to_build_custom_form_controls/index.html
+++ b/files/pt-br/learn/forms/how_to_build_custom_form_controls/index.html
@@ -404,7 +404,7 @@ original_slug: Web/Guide/HTML/Forms/How_to_build_custom_form_widgets
<p>In the code we are about to build, we will use the standard DOM API to do all the work we need. However, although DOM API support has gotten much better in browsers, there are always issues with legacy browsers (especially with good old Internet Explorer).</p>
-<p>If you want to avoid trouble with legacy browsers, there are two ways to do so: using a dedicated framework such as <a href="http://jquery.com/" rel="external" title="http://jquery.com/">jQuery</a>, <a href="https://github.com/julienw/dollardom" rel="external" title="https://github.com/julienw/dollardom">$dom</a>, <a href="http://prototypejs.org/" rel="external" title="http://prototypejs.org/">prototype</a>, <a href="http://dojotoolkit.org/" rel="external">Dojo</a>, <a href="http://yuilibrary.com/" rel="external">YUI</a>, or the like, or by polyfilling the missing feature you want to use (which can easily be done through conditional loading, with the <a href="http://yepnopejs.com/" rel="external">yepnope</a> library for example).</p>
+<p>If you want to avoid trouble with legacy browsers, there are two ways to do so: using a dedicated framework such as <a href="http://jquery.com/" rel="external" title="http://jquery.com/">jQuery</a>, <a href="https://github.com/julienw/dollardom" rel="external" title="https://github.com/julienw/dollardom">$dom</a>, <a href="http://prototypejs.org/" rel="external">prototype</a>, <a href="http://dojotoolkit.org/" rel="external">Dojo</a>, <a href="http://yuilibrary.com/" rel="external">YUI</a>, or the like, or by polyfilling the missing feature you want to use (which can easily be done through conditional loading, with the <a href="http://yepnopejs.com/" rel="external">yepnope</a> library for example).</p>
<p>The features we plan to use are the following (ordered from the riskiest to the safest):</p>
diff --git a/files/pt-br/learn/forms/sending_and_retrieving_form_data/index.html b/files/pt-br/learn/forms/sending_and_retrieving_form_data/index.html
index 1e5b84ddd4..42aa29ae59 100644
--- a/files/pt-br/learn/forms/sending_and_retrieving_form_data/index.html
+++ b/files/pt-br/learn/forms/sending_and_retrieving_form_data/index.html
@@ -12,7 +12,7 @@ original_slug: Web/Guide/HTML/Forms/Sending_and_retrieving_form_data
<h3 id="Sobre_a_arquitetura_cliente_servidor">Sobre a arquitetura cliente / servidor</h3>
-<p>A web é baseada em uma arquitetura cliente / servidor muito básica que pode ser resumida da seguinte forma: um cliente (normalmente um navegador da Web) envia um pedido a um servidor (na maioria das vezes um servidor web como <a href="http://httpd.apache.org/" rel="external" title="http://www.apache.org/">Apache</a>, <a href="http://nginx.com/" rel="external">Nginx</a>, <a href="http://www.iis.net/" rel="external">IIS</a>, <a href="http://tomcat.apache.org/" rel="external">Tomcat</a>, etc.), usando o <a href="/en-US/docs/HTTP" title="/en-US/docs/HTTP">HTTP protocol</a>. O servidor responde a solicitação usando o mesmo protocolo.</p>
+<p>A web é baseada em uma arquitetura cliente / servidor muito básica que pode ser resumida da seguinte forma: um cliente (normalmente um navegador da Web) envia um pedido a um servidor (na maioria das vezes um servidor web como <a href="http://httpd.apache.org/" rel="external">Apache</a>, <a href="http://nginx.com/" rel="external">Nginx</a>, <a href="http://www.iis.net/" rel="external">IIS</a>, <a href="http://tomcat.apache.org/" rel="external">Tomcat</a>, etc.), usando o <a href="/en-US/docs/HTTP" title="/en-US/docs/HTTP">HTTP protocol</a>. O servidor responde a solicitação usando o mesmo protocolo.</p>
<p><img alt="A basic schema of the Web client/server architecture" src="/files/4291/client-server.png" style="height: 141px; width: 400px;"></p>