aboutsummaryrefslogtreecommitdiff
path: root/files/ca/web/html/element/noframes/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ca/web/html/element/noframes/index.html')
-rw-r--r--files/ca/web/html/element/noframes/index.html38
1 files changed, 38 insertions, 0 deletions
diff --git a/files/ca/web/html/element/noframes/index.html b/files/ca/web/html/element/noframes/index.html
new file mode 100644
index 0000000000..492727308a
--- /dev/null
+++ b/files/ca/web/html/element/noframes/index.html
@@ -0,0 +1,38 @@
+---
+title: <noframes>
+slug: Web/HTML/Element/noframes
+tags:
+ - Element
+ - HTML
+ - Reference
+ - Web
+translation_of: Web/HTML/Element/noframes
+---
+<h2 id="Sumari">Sumari</h2>
+
+<p>L'element HTML <code>&lt;noframes&gt;</code> s'utilitza per donar suport als navegadors que no són capaços de suportar elements {{HTMLElement("frame")}}  o està configurats per a fer-ho.</p>
+
+<p>Es pot utilitzar qualsevol element HTML dins de <code>&lt;noframes&gt;</code> que s'espera que sigui vist dins de l'element {{HTMLElement("body")}} , excepte els elements {{HTMLElement("frameset")}} i {{HTMLElement("frame")}}.</p>
+
+<div class="note"><strong>Nota:</strong> El fet de que els principals navegadors suportin marcs, l'ús d'aquest element no és necessari en casos generals. Sent totalment obsolet en HTML5, s'ha d'evitar per ajustar-se a la norma.</div>
+
+<h2 id="Atributs">Atributs</h2>
+
+<p><span id="result_box" lang="ca"><span>Igual</span> <span>que tots els altres</span> <span>elements</span> <span>HTML</span><span>, aquest element</span> <span>és compatible</span> <span>amb</span> <span>els</span> </span><a href="/en-US/HTML/Global_attributes" title="HTML/Global attributes">atributs globals</a>.</p>
+
+<h2 id="Exemple">Exemple</h2>
+
+<pre class="brush:html">&lt;frameset cols="50%,50%"&gt;
+ &lt;frame src="https://developer.mozilla.org/en/HTML/Element/frameset" /&gt;
+ &lt;frame src="https://developer.mozilla.org/en/HTML/Element/frame" /&gt;
+ &lt;noframes&gt;&lt;p&gt;It seems your browser does not support frames or configured to does not so.&lt;/p&gt;&lt;/noframes&gt;
+&lt;/frameset&gt;</pre>
+
+<h2 id="Veure">Veure</h2>
+
+<ul>
+ <li>{{HTMLElement("frameset")}}</li>
+ <li>{{HTMLElement("frame")}}</li>
+</ul>
+
+<p>{{HTMLRef}}</p>