Caos Games
ESTE FORO ESTA CERRADO, POR FAVOR ACUDID A LA NUEVA COMUNIDAD:

http://www.caosg.oni.cc

Unirse al foro, es rápido y fácil

Caos Games
ESTE FORO ESTA CERRADO, POR FAVOR ACUDID A LA NUEVA COMUNIDAD:

http://www.caosg.oni.cc
Caos Games
¿Quieres reaccionar a este mensaje? Regístrate en el foro con unos pocos clics o inicia sesión para continuar.
Conectarse

Recuperar mi contraseña

Buscar
 
 

Resultados por:
 


Rechercher Búsqueda avanzada

Últimos temas
» IMPORTANTE: --- FORO CERRADO --- Nueva comunidad.
Cabecera de un documento HTML I_icon_minitimeJue Jul 22, 2010 6:19 pm por Emmet

» Algunis Graficos desde el mundo shinigami
Cabecera de un documento HTML I_icon_minitimeSáb Jul 10, 2010 8:14 am por Haku-Shinigami

» Chistes
Cabecera de un documento HTML I_icon_minitimeSáb Jul 10, 2010 8:05 am por Haku-Shinigami

» King's War (GdR) 1.0
Cabecera de un documento HTML I_icon_minitimeJue Jul 01, 2010 6:58 pm por Emmet

» Mundo de Caos 0.1 BETA y packs de idioma
Cabecera de un documento HTML I_icon_minitimeJue Jul 01, 2010 6:57 pm por Emmet

» Evitar repetir datos en un ListBox
Cabecera de un documento HTML I_icon_minitimeSáb Jun 19, 2010 2:01 pm por Emmet

» Age Of Mytology | Juego de estrategia
Cabecera de un documento HTML I_icon_minitimeMar Jun 15, 2010 5:44 pm por vengatoro

» Notificacion importante 21/05/10
Cabecera de un documento HTML I_icon_minitimeSáb Mayo 22, 2010 1:20 pm por gorogrim

» Novedades 9/5/2010
Cabecera de un documento HTML I_icon_minitimeMiér Mayo 12, 2010 4:04 pm por gorogrim

» [Rm2k3] Wonder Boy Z
Cabecera de un documento HTML I_icon_minitimeLun Mayo 03, 2010 5:14 am por Haku-Shinigami

Webs Amigas
PortyGames
Donaciones
Unete!

Cabecera de un documento HTML

Ir abajo

Cabecera de un documento HTML Empty Cabecera de un documento HTML

Mensaje por Emmet Vie Dic 04, 2009 9:27 pm

Cabecera (HEAD) de un documento HTML


La HEAD es la primera de las dos partes en que se estructura un documento HTML.

En la HEAD reside información acerca del documento, y generalmente no se ve cuando se navega por él. En la HEAD se pone el elemento lleno que es una breve descripción que identifica la página. Es lo que el navegador se guarda en el "Bookmarks" (libro de marcas o libro de direcciones), con lo que crea la lista que aparece en la orden "Go" de la barra de órdenes, lo que aparece en la esquina superior izquierda cuando se imprime el documento, y lo que aparece en el marco de la ventana del navegador. También lo guarda en su caché, y servirá para mostrar la página, cuando sea llamada otra vez, sin necesidad de conectarse de nuevo al servidor de origen.<br /><br />No hay que confundir el elemento <TITLE> con el nombre del fichero.<br />Por ejemplo, esta página está contenida en un fichero llamado head.htm y el texto de su <TITLE> es: Head de un documento. Se escibirá asi:<br /><br /><dl class="codebox"><dt>Código:</dt><dd><code><HEAD><br /><TITLE>Head de un documento </TITLE><br /></HEAD></code></dd></dl><br />Dentro de la HEAD puede utilizarse otro elemento: META. Por ejemplo, si se escribe:<br /><dl class="codebox"><dt>Código:</dt><dd><code><br /><HEAD><br /><TITLE>Head de un documento </TITLE><br /><META HTTP-EQUIV="Refresh" CONTENT="10"><br /></HEAD><br /></code></dd></dl><br /><br />Esto hace que el visualizador vuelva a cargar la página activa al cabo de 10 segundos. También puede hacerse a un servidor. Así:<br /><dl class="codebox"><dt>Código:</dt><dd><code><br /><HEAD><br /><TITLE>Head de un documento </TITLE><br /><META HTTP-EQUIV="Refresh" CONTENT="10; URL=http://miservidor/mipagina.htm"><br /></HEAD></code></dd></dl><br /><br />Utiliza esto con precaución. Si sabes que el contenido de la página no va a cambiar, es inútil hacer esto, y si lo haces contra un servidor, puedes sobrecargarlo. Este elemento, sólo tendrá utilidad en casos muy especiales.<br /><br />Otra opción es forzar la expiración inmediata en la caché del navegador de la página recibida, lo que provoca que la página sea solicitada de nuevo al servidor cada vez, en lugar de cargar la copia que ya existe en la máquina del cliente. Se escribe así:<br /><dl class="codebox"><dt>Código:</dt><dd><code><br /><HEAD><br /><TITLE>Head de un documento </TITLE><br /><META HTTP-EQUIV="Expires" CONTENT="Tue, 20 Aug 1996 14:25:27 GMT"><br /></HEAD></code></dd></dl><br /><br />Si se pone una fecha ya pasada, como la que hay en el ejemplo, el navegador elimina inmediatamente de la caché la página recibida, y si no es pasada, lo hará en el momento indicado por la misma. También se le puede dar valor cero a la fecha de expiración:<br /><dl class="codebox"><dt>Código:</dt><dd><code><br /><HEAD><br /><TITLE>Head de un documento </TITLE><br /><META HTTP-EQUIV="Expires" CONTENT="0"><br /></HEAD></code></dd></dl><br /><br />Otra opción es impedir directamente que el navegador guarde en caché la página. Esto es especialmente útil cuando se trabaja con formularios que consultan datos dinámicos:<br /><dl class="codebox"><dt>Código:</dt><dd><code><br /><HEAD><br /><TITLE>Head de un documento </TITLE><br /><META HTTP-EQUIV="Expires" CONTENT="no-cache"><br /></HEAD></code></dd></dl><br /><br />Si tienes interés en que tus páginas aparezcan en los grandes buscadores de Internet, y puedan ser encontradas con facilidad, puedes poner las palabras clave que contiene la página separadas por comas. Por ejemplo:<br /><dl class="codebox"><dt>Código:</dt><dd><code><br /><HEAD><br /><TITLE>Head de un documento </TITLE><br /><META NAME="keywords" CONTENT="HTML, internet  "><br /></HEAD></code></dd></dl><br /><br />Este otro sirve para que los buscadores puedan ofrecer un breve resumen de los contenidos de tu página:<br /><br /><dl class="codebox"><dt>Código:</dt><dd><code><br /><HEAD><br /><TITLE>Head de un documento </TITLE><br /><META NAME="description" CONTENT="Manual para escribir HTML."><br /></HEAD></code></dd></dl><br /><br />Puedes poner todos los elementos <META> que creas necesarios, pero sin repetirlos.<br /><br />Habrás notado que se ha utilizado la palabra "caché", y tal vez no sepas a qué se refiere. Todos los navegadores, por defecto, siempre que reciben una página de un servidor se hacen una copia de la misma en el disco de tu máquina. Con esto se pretende que si vuelves a solicitar la misma página, en lugar de pedirla de nuevo al servidor, te mostrará la que tiene guardada en el disco. A esta área del disco donde el navegador va poniendo las páginas visitadas, se le denomina caché. El tamaño de la caché lo puedes modificar desde las opciones de configuración del navegador, e incluso puedes darle tamaño cero, con lo que siempre que veas una página, ésta habrá sido solicitada al servidor independientemente de lo que digan las instrucciones META.<br /><br />Hay otros elementos que pueden aparecer en la HEAD, como ISINDEX, NEXTID, LINK o BASE, pero son de uso muy especializado y poco corriente, algunos ya en desuso, y ninguno obligatorio (<TITLE> sí lo es).</div></div></div><div class="postprofile" id="profile346"><!-- div class="online2"></div--><dl><dt><img loading="lazy" src="https://2img.net/u/3011/15/67/21/avatars/1-9.png" alt="Emmet" style="max-width: 200px; max-height: 600px" /><br /><strong style="font-size:1.2em">Emmet</strong></dt><dd>Admin<br /><img src="https://2img.net/i/itest/ranks/sword/sword8.gif" alt="Admin" title="Admin" loading="lazy" /><br /></dd><dd class="dd_award left"></dd><dd class="award_more"></dd><dd><br /></dd><dd><span class="label"><span style="color:#b9b9b9;">Mensajes</span> : </span> 386<br /><span class="label"><span style="color:#b9b9b9;">Fecha de inscripción</span> : </span> 01/11/2009<br /><span class="label"><span style="color:#b9b9b9;">Edad</span> : </span> 29<br /><span class="label"><span style="color:#b9b9b9;">Localización</span> : </span> Sarria<br /><br /><strong>Datos de soporte</strong><br /><span class="gen">Version</span>: <span class="gen" id="rpg-version">MDC v.0.1 BETA</span><br /><span class="gen">Respeto de las normas</span>: <br /><img src="https://2img.net/i/fa/i/left_bar_bleue.jpg" width="4" height="12" alt="Cabecera de un documento HTML Left_bar_bleue" loading="lazy" /><img src="https://2img.net/i/fa/i/full_bar_bleue.jpg" width="100" height="12" alt="100/100" loading="lazy" /><img src="https://2img.net/i/fa/i/empty_bar_bleue.jpg" width="0" height="12" alt="Cabecera de un documento HTML Empty_bar_bleue" loading="lazy" /><img src="https://2img.net/i/fa/i/right_bar_bleue.jpg" width="4" height="12" loading="lazy" />  <span id="rpg-respeto-de-las-normas" class="gensmall">(100/100)</span></dd><dd><br /></dd><dd> <a href="https://caos-games.forosactivos.net" title="Visitar el sitio web del autor" target="_blank" rel="nofollow"><img src="https://2img.net/s/t/16/28/86/i_icon_www.png" alt="https://caos-games.forosactivos.net" /></a></dd></dl></div><div class="clear"></div><div class="fa_like_div"><p class="fa_like_list" style="display: none;"></p><button class="rep-button " data-href="" data-href-rm=""><svg width="13px" height="13px" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M320 1344q0-26-19-45t-45-19q-27 0-45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45-18.5t19-45.5zm160-512v640q0 26-19 45t-45 19h-288q-26 0-45-19t-19-45v-640q0-26 19-45t45-19h288q26 0 45 19t19 45zm1184 0q0 86-55 149 15 44 15 76 3 76-43 137 17 56 0 117-15 57-54 94 9 112-49 181-64 76-197 78h-129q-66 0-144-15.5t-121.5-29-120.5-39.5q-123-43-158-44-26-1-45-19.5t-19-44.5v-641q0-25 18-43.5t43-20.5q24-2 76-59t101-121q68-87 101-120 18-18 31-48t17.5-48.5 13.5-60.5q7-39 12.5-61t19.5-52 34-50q19-19 45-19 46 0 82.5 10.5t60 26 40 40.5 24 45 12 50 5 45 .5 39q0 38-9.5 76t-19 60-27.5 56q-3 6-10 18t-11 22-8 24h277q78 0 135 57t57 135z" fill="#666"/></svg><span>Me gusta</span><span class="rep-nb" style="display:none;"></span></button><button class="rep-button " data-href="" data-href-rm=""><svg width="13px" height="13px" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M320 576q0 26-19 45t-45 19q-27 0-45.5-19t-18.5-45q0-27 18.5-45.5t45.5-18.5q26 0 45 18.5t19 45.5zm160 512v-640q0-26-19-45t-45-19h-288q-26 0-45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45-19t19-45zm1129-149q55 61 55 149-1 78-57.5 135t-134.5 57h-277q4 14 8 24t11 22 10 18q18 37 27 57t19 58.5 10 76.5q0 24-.5 39t-5 45-12 50-24 45-40 40.5-60 26-82.5 10.5q-26 0-45-19-20-20-34-50t-19.5-52-12.5-61q-9-42-13.5-60.5t-17.5-48.5-31-48q-33-33-101-120-49-64-101-121t-76-59q-25-2-43-20.5t-18-43.5v-641q0-26 19-44.5t45-19.5q35-1 158-44 77-26 120.5-39.5t121.5-29 144-15.5h129q133 2 197 78 58 69 49 181 39 37 54 94 17 61 0 117 46 61 43 137 0 32-15 76z" fill="#666"/></svg><span>No me gusta</span><span class="rep-nb" style="display:none;"></span></button></div><p class="right"><a href="#top"><img src="https://2img.net/s/t/16/28/86/i_up_arrow.png" alt="Volver arriba" loading="lazy" /></a> <a href="#bottom"><img src="https://2img.net/s/t/16/28/86/i_down_arrow.png" alt="Ir abajo" loading="lazy" /></a></p><span class="corners-bottom"><span></span></span></div></div><a name="bottomtitle"></a><p class="left-box"><a href="#top"><img src="https://2img.net/s/t/16/28/86/i_up_arrow.png" alt="Volver arriba" loading="lazy" /></a></p><div class="clear"></div><div class="noprint"><p class="right"></p></div><div class="post row2" id="ptrafic_close" style="display:none;font-size:1.3em;line-height:1.4em"><span class="corners-top"><span></span></span><span class="gensmall"><a href="javascript:ShowHideLayer('ptrafic_open','ptrafic_close');"><img src="https://2img.net/s/t/16/28/86/i_tabs_more.png" alt="+" align="" border="0" /></a></span><span class="ptrafic"> Temas similares</span><span class="corners-bottom"><span></span></span></div><div class="post row2" id="ptrafic_open" style="display:'';font-size:1.3em;line-height:1.4em"><span class="corners-top"><span></span></span><span class="gensmall"><a href="javascript:ShowHideLayer('ptrafic_open','ptrafic_close');"><img src="https://2img.net/s/t/16/28/86/i_tabs_less.png" alt="-" align="" border="0" /></a></span><span class="ptrafic"> Temas similares</span><div class="clear"></div><div>» <a href="/t61-cuerpo-de-un-documento-html" title="Cuerpo de un documento HTML" >Cuerpo de un documento HTML</a><br />» <a href="/t58-introduccion-a-html" title="Introduccion a HTML" >Introduccion a HTML</a><br />» <a href="/t59-estructura-de-una-pagina-html" title="Estructura de una pagina HTML" >Estructura de una pagina HTML</a><br />» <a href="/t62-manual-de-html-indice" title="Manual de HTML -- Indice" >Manual de HTML -- Indice</a><br />» <a href="/t66-texto-en-color-con-html" title="Texto en color con HTML" >Texto en color con HTML</a><br /></div><span class="corners-bottom"><span></span></span></div><a name="quickreply"></a><hr /><div class="topic-actions"><div class="buttons"></div><div class="pathname-box"><p><a class="nav" href="/">Caos Games</a><a class="nav" href=""></a> :: <a href="/c1-proyectos" class="nav"><span>Proyectos</span></a> :: <a href="/f36-tutoriales-generalizados" class="nav"><span>Tutoriales generalizados</span></a> :: <a href="/f20-programacion" class="nav"><span>Programacion</span></a></p></div><div class="pagination">Página <strong>1</strong> de <strong>1</strong>.</div></div><div class="clear"></div><form action="/viewforum" method="get" onsubmit="if(document.jumpbox.f.value == -1){return false;}"><fieldset class="jumpbox"><label>Cambiar a: </label><select name="selected_id" onchange="if(this.options[this.selectedIndex].value != -1){ forms['jumpbox'].submit() }"><option value="-1">Seleccionar un foro</option><option value="-1"></option><option value="-1">|</option><option fa_attr="true" value="c2">|--Informacion</option><option fa_attr="true" value="f3">|   |--Informacion</option><option fa_attr="true" value="f17">|   |   |--Sugerencias</option><option fa_attr="true" value="f18">|   |   |--Proyectos Externos</option><option value="-1">|   |   </option><option fa_attr="true" value="f1">|   |--Noticias</option><option fa_attr="true" value="f24">|   |--Presentaciones</option><option value="-1">|   </option><option fa_attr="true" value="c1">|--Proyectos</option><option fa_attr="true" value="f14">|   |--Descargas</option><option fa_attr="true" value="f34">|   |--Mundo de Caos</option><option fa_attr="true" value="f4">|   |   |--Noticias</option><option fa_attr="true" value="f5">|   |   |--Soporte</option><option fa_attr="true" value="f6">|   |   |   |--MOD's</option><option fa_attr="true" value="f7">|   |   |   |--BUG's</option><option fa_attr="true" value="f8">|   |   |   |--FIX's</option><option value="-1">|   |   |   </option><option fa_attr="true" value="f9">|   |   |--Ideas y Propuestas</option><option fa_attr="true" value="f15">|   |   |--Recursos Gaficos</option><option fa_attr="true" value="f10">|   |   |--Tutoriales</option><option fa_attr="true" value="f11">|   |   |--Servidores</option><option value="-1">|   |   </option><option fa_attr="true" value="f35">|   |--King's War</option><option fa_attr="true" value="f37">|   |   |--Noticias</option><option fa_attr="true" value="f39">|   |   |--Soporte</option><option fa_attr="true" value="f40">|   |   |--Ideas y Propuestas</option><option fa_attr="true" value="f41">|   |   |--Recursos Graficos</option><option fa_attr="true" value="f42">|   |   |--Tutoriales</option><option fa_attr="true" value="f43">|   |   |--Servidores</option><option value="-1">|   |   </option><option fa_attr="true" value="f38">|   |--Moon of Blood</option><option fa_attr="true" value="f36">|   |--Tutoriales generalizados</option><option fa_attr="true" value="f20">|       |--Programacion</option><option fa_attr="true" value="f19">|       |--Diseño</option><option value="-1">|   </option><option fa_attr="true" value="c3">|--Programacion</option><option fa_attr="true" value="f45">|   |--Gambas2</option><option fa_attr="true" value="f46">|       |--Ayuda</option><option fa_attr="true" value="f47">|       |--Codigos sueltos</option><option fa_attr="true" value="f48">|       |--Programas</option><option value="-1">|   </option><option fa_attr="true" value="c6">|--RPG Maker</option><option fa_attr="true" value="f25">|   |--Ayuda y dudas</option><option fa_attr="true" value="f44">|   |   |--Tutoriales</option><option value="-1">|   |   </option><option fa_attr="true" value="f28">|   |--Concursos</option><option fa_attr="true" value="f26">|   |--Recursos y exposiciones</option><option fa_attr="true" value="f33">|   |   |--RGSS</option><option value="-1">|   |   </option><option fa_attr="true" value="f27">|   |--Presentacion de juegos</option><option value="-1">|   </option><option fa_attr="true" value="c7">|--Offtopic</option><option fa_attr="true" value="f29">    |--Offtopic</option><option fa_attr="true" value="f30">        |--Manga y anime</option><option fa_attr="true" value="f31">        |--Musica, cine y TV</option><option fa_attr="true" value="f32">        |--Videojuegos</option></select><input type="hidden" name="tid" value="1a7f6a35fcdede9ee9800998ecf8427e" /> <input class="button2" type="submit" value="Ir" /></fieldset></form><div class="h3"><strong>Permisos de este foro:</strong></div><strong>No puedes</strong> responder a temas en este foro.<br /><script type="text/javascript">//<![CDATA[ $(resize_images({ 'selector' : '.postbody .content', 'max_width' : 400, 'max_height' : 200 }));//]]></script><div class="f64a" style="overflow:visible"><span class="corners-top"><span></span></span><div class="inner"><div align="center"> <div style="text-align:center; display:inline-block; margin:0 auto;"> <table border="0" cellspacing="0" cellpadding="0" style="padding:0; margin:0; border:none;"> <tbody> <tr> <td valign="top" style="padding:32px 32px; "> <script type="text/javascript">//<![CDATA[ function AT_adFillSlot(){document.write('<scr' + 'ipt language="JavaScript" type="text/javascript">rp_account="11662";rp_site="36494";rp_zonesize="151258-15";rp_adtype="js";rp_smartfile="[SMART FILE URL]";</scr' + 'ipt><scr' + 'ipt type="text/javascript" src="https://ads.rubiconproject.com/ad/11662.js"></scr' + 'ipt>');}//]]> </script> <div id="crt-8x0c97dz1" style="width:300px;height:250px;margin:auto;"></div> <script type="text/javascript"> CriteoAdblock("crt-8x0c97dz1", 1356533,'criteo_13333601'); </script> <!-- BEGIN 13333601 --> <div id="criteo_13333601"> <script type="text/javascript"> Criteo.events.push(function() { Criteo.Passback.RenderAd('criteo_13333601', function(){ var width = "300"; var height = "250"; var slotid = "criteo_13333601"; var div = document.getElementById(slotid); if (div) { var ifr = document.createElement('iframe'); ifr.setAttribute("id", slotid + "_iframe"), ifr.setAttribute("frameborder", "0"), ifr.setAttribute("allowtransparency", "true"), ifr.setAttribute("hspace", "0"), ifr.setAttribute("marginwidth", "0"), ifr.setAttribute("marginheight", "0"), ifr.setAttribute("scrolling", "no"), ifr.setAttribute("vspace", "0"), ifr.setAttribute("width", "300"), ifr.setAttribute("height", "250"); div.appendChild(ifr); var ifrd = ifr.contentWindow.document; var htmlcode ='<scr' + 'ipt> window._taboola = window._taboola || [];_taboola.push({article:"auto"});!function (e, f, u, i) {if (!document.getElementById(i)){e.async = 1;e.src = u;e.id = i;f.parentNode.insertBefore(e, f);}}(document.createElement("script"),document.getElementsByTagName("script")[0],"\/\/cdn.taboola.com/libtrc/forforumotion-es/loader.js","tb_loader_script");</scr' + 'ipt><div id="taboola-300x250-thumbnails-7" style="background-color:#fffd"></div><scr' + 'ipt type="text/javascript">window._taboola = window._taboola || [];_taboola.push({mode: "thumbnails-300x250",container: "taboola-300x250-thumbnails-7",placement: "300x250 Thumbnails-7",target_type: "mix"});</scr' + 'ipt> <scr' + 'ipt type="text/javascript">window._taboola = window._taboola || []; _taboola.push({flush: true});</scr' + 'ipt>'; ifrd.open(); ifrd.write(htmlcode); ifrd.close(); } }); }); </script></div> <!-- END CRITEO TAG --></td> <td valign="top" style="padding:32px 32px; "> <script type="text/javascript">//<![CDATA[ function AT_adFillSlot(){document.write('<scr' + 'ipt language="JavaScript" type="text/javascript">rp_account="11662";rp_site="36494";rp_zonesize="151258-15";rp_adtype="js";rp_smartfile="[SMART FILE URL]";</scr' + 'ipt><scr' + 'ipt type="text/javascript" src="https://ads.rubiconproject.com/ad/11662.js"></scr' + 'ipt>');}//]]> </script> <div id="crt-8x0c97dz" style="width:300px;height:250px;margin:auto;"></div> <script type="text/javascript"> CriteoAdblock("crt-8x0c97dz", 1356533,'criteo_1333360'); </script> <!-- BEGIN 1333360 --> <div id="criteo_1333360"> <script type="text/javascript"> Criteo.events.push(function() { Criteo.Passback.RenderAd('criteo_1333360', function(){ var width = "300"; var height = "250"; var slotid = "criteo_1333360"; var div = document.getElementById(slotid); if (div) { var ifr = document.createElement('iframe'); ifr.setAttribute("id", slotid + "_iframe"), ifr.setAttribute("frameborder", "0"), ifr.setAttribute("allowtransparency", "true"), ifr.setAttribute("hspace", "0"), ifr.setAttribute("marginwidth", "0"), ifr.setAttribute("marginheight", "0"), ifr.setAttribute("scrolling", "no"), ifr.setAttribute("vspace", "0"), ifr.setAttribute("width", "300"), ifr.setAttribute("height", "250"); div.appendChild(ifr); var ifrd = ifr.contentWindow.document; var htmlcode ='<scr' + 'ipt> window._taboola = window._taboola || [];_taboola.push({article:"auto"});!function (e, f, u, i) {if (!document.getElementById(i)){e.async = 1;e.src = u;e.id = i;f.parentNode.insertBefore(e, f);}}(document.createElement("script"),document.getElementsByTagName("script")[0],"\/\/cdn.taboola.com/libtrc/forforumotion-es/loader.js","tb_loader_script");</scr' + 'ipt><div id="taboola-300x250-thumbnails-3" style="background-color:#fffd"></div><scr' + 'ipt type="text/javascript">window._taboola = window._taboola || [];_taboola.push({mode: "thumbnails-300x250",container: "taboola-300x250-thumbnails-3",placement: "300x250 Thumbnails-3",target_type: "mix"});</scr' + 'ipt> <scr' + 'ipt type="text/javascript">window._taboola = window._taboola || []; _taboola.push({flush: true});</scr' + 'ipt>'; ifrd.open(); ifrd.write(htmlcode); ifrd.close(); } }); }); </script></div> <!-- END CRITEO TAG --></td> </tr> </tbody> </table> </div></div></div><span class="corners-bottom"><span></span></span></div><div style="height:3px"></div></div></div></div></div><div id="emptyidright"></div></div></div></div></div><div id="page-footer"><div class="navbar"><div class="inner"><span class="corners-top"><span></span></span><ul class="linklist clearfix"><li class="footer-home"><a class="icon-home" href="/" accesskey="h">Índice</a></li><li class="rightside"><strong><a href="https://www.foroactivo.com/crear-un-foro/phpbb3" target="_blank">Crear foro</a></strong> | <span class="gensmall">©</span><a href="https://www.foroactivo.com/phpbb" target="_blank">phpBB</a> | <a name="bottom" href="https://asistencia.foroactivo.com/" target="_blank">Foro gratis de asistencia</a> | <a href="/abuse?page=%2Ft60-cabecera-de-un-documento-html&report=1" rel="nofollow">Denunciar un abuso</a> | <strong><a href="https://www.foroactivo.com" target="_blank">foro gratis</a></strong></li></ul><span class="corners-bottom"><span></span></span></div></div><p class="copyright"><strong></strong></p></div></div></div></div></div><script type="text/javascript">$(document).ready( function() {$('div.ti-connect').attr({'data-loc' : 'https://connect.topicit.net/','data-login' : 'https://caos-games.forosactivos.net/topicit/index.php/connect','data-version' : '1','data-lang' : 'es'});(function(d, s, id) {var js, fjs = d.getElementsByTagName(s)[0];if (d.getElementById(id)) return;js = d.createElement(s); js.id = id;js.src = "https://connect.topicit.net/scripts/connect.js";fjs.parentNode.insertBefore(js, fjs);}(document, 'script', 'topicit-connect'));});</script><script type="text/javascript">//<![CDATA[ fa_endpage();//]]></script><script type="text/javascript"> var vglnk = { key: '5a5e09c99bf477b62bf79c1924e231f7' }; (function(d, t) { var s = d.createElement(t); s.type = 'text/javascript'; s.async = true; s.src = '//cdn.viglink.com/api/vglnk.js'; var r = d.getElementsByTagName(t)[0]; r.parentNode.insertBefore(s, r); }(document, 'script')); </script> <div id="Forumactif_Video"></div> <script type="application/javascript"> //<![CDATA[ var slmadshb = slmadshb || {}; slmadshb.que = slmadshb.que || []; slmadshb.que.push(function() { slmadshb.display("Forumactif_Video"); }); //]]> </script> <script type="text/javascript">window._taboola = window._taboola || []; _taboola.push({flush: true});</script> <!-- BEGIN 1425605 - etoxic - FR - CDB - PCK - sticky footer - 728x90--> <div id="criteo_sticky"> <script type="text/javascript"> function CreateStickyFooterContainer(e) { var t = document.getElementById(e); t.style.position = "fixed", t.style.zIndex = "2147483646", t.style.bottom = "0", t.style.left = "0", t.style.padding = "0", t.style.borderColor = "rgb(196, 196, 196)", t.style.width = "100%", t.style.backgroundColor = "rgba(245, 245, 245, 0.54902)", t.style.borderStyle = "solid", t.style.borderWidth = "1px"; var o = document.createElement("a"); t.appendChild(o), o.style.backgroundColor = "rgb(221, 221, 221)", o.style.backgroundImage = "url('//static.criteo.net/images/criteo/publishertag/close.png')", o.style.backgroundRepeat = "no-repeat", o.style.backgroundPosition = "center", o.style.display = "block", o.style.position = "absolute", o.style.left = "0", o.style.top = "-24px", o.style.width = "23px", o.style.height = "24px", o.style.borderBottomColor = "#6d6c71", o.style.cursor = "pointer", o.onclick = function() { t.style.display = "none" }; var l = document.createElement("div"); l.id = "cto_sticky", l.style.margin = "0 auto", l.style.display = "table"; t.appendChild(l); return l.id }; Criteo.events.push(function() { if(!isMobile){ Criteo.Passback.RenderAd(CreateStickyFooterContainer("criteo_sticky"), function(){ var slotid = "criteo_sticky"; var div = document.getElementById(slotid); div.removeAttribute("style"); }); } else{ var slotid = "criteo_sticky"; var div = document.getElementById(slotid); div.style.display = "none"; } }); </script> </div> <!-- END CRITEO TAG --></body></html>