<?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>vloox &#187; Programación</title>
	<atom:link href="http://vloox.com/category/programacion/feed/" rel="self" type="application/rss+xml" />
	<link>http://vloox.com</link>
	<description>Blog de variedades</description>
	<lastBuildDate>Wed, 21 Apr 2010 02:42:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Grid framework CSS de 1 línea</title>
		<link>http://vloox.com/297/grid-framework-css-de-1-linea/</link>
		<comments>http://vloox.com/297/grid-framework-css-de-1-linea/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 03:59:26 +0000</pubDate>
		<dc:creator>Alejandro</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[grillas]]></category>
		<category><![CDATA[layouts]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://vloox.com/?p=297</guid>
		<description><![CDATA[La idea de 1 line CSS Grid Framework es poder crear un layout CSS basado en grillas con solo una línea de código CSS:

.dp50 {width:50%;  float:left;  display: inline;  *margin-right:-1px; }

Este sistema parte del principio de que cada columna puede dividirse en 2, por lo que pueden hacerse layouts de 2, 4, 8, [...]]]></description>
			<content:encoded><![CDATA[<p>La idea de <a href="http://www.vcarrer.com/2009/06/1-line-css-grid-framework.html">1 line CSS Grid Framework</a> es poder crear un <strong>layout CSS basado en grillas</strong> con solo una línea de código CSS:</p>
<pre class="brush: css;">
.dp50 {width:50%;  float:left;  display: inline;  *margin-right:-1px; }
</pre>
<p>Este sistema parte del principio de que cada columna puede dividirse en 2, por lo que pueden hacerse layouts de 2, 4, 8, 16&#8230; columnas. Obteniendo este resultado:</p>
<p><a href="http://www.allapis.com/1-Line-CSS-Framework/1-line-css-framework-1.html"><img class="alignnone size-full wp-image-298" title="1-line-css-framework" src="http://vloox.com/wp-content/uploads/2009/07/1-line-css-framework.png" alt="1-line-css-framework" width="400" height="256" /></a></p>
<p>Funciona con px, em y porcentajes. Es compatible con todos los navagadores, hasta IE5.5. El autor no lo recomienda para producción, si no más bien como una demostración de lo que puede hacerse con solo una línea de CSS.</p>
<p>Otra opción un poco más completa pero ultra pequeña, del mismo autor, es <a href="http://code.google.com/p/malo/">Malo</a>, un  framework CSS de 8 líneas. Y para el que lo anterior no le alcance tiene <a href="http://code.google.com/p/emastic/">Emastic</a> y <a href="http://code.google.com/p/the-golden-grid/">The Golden Grid</a>.</p>
<p>Por mi parte, hice un <a href="http://vloox.com/ejemplos/layout-fluido-3-columnas.html">layout fluido clásico de blog de 3 columnas</a>: header, contenido, dos sidebars y footer.</p>
<p>En conclusión,  <a href="http://www.vcarrer.com/2009/06/1-line-css-grid-framework.html">1 line CSS Grid Framework</a> es muy fácil de usar y puede servir para crear sistemas de grillas simples.</p>
]]></content:encoded>
			<wfw:commentRss>http://vloox.com/297/grid-framework-css-de-1-linea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Diferencias entre los tags b, i, strong y em</title>
		<link>http://vloox.com/251/diferencias-entre-los-tags-b-i-strong-y-em/</link>
		<comments>http://vloox.com/251/diferencias-entre-los-tags-b-i-strong-y-em/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 04:25:41 +0000</pubDate>
		<dc:creator>Alejandro</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://vloox.com/?p=251</guid>
		<description><![CDATA[Ya se discutió (y bien) este tema en otros lugares, pero a raíz de un post en Kabytes y viendo que no está muy clara cual es la diferencia entre los tags  &#60;b&#62; vs. &#60;strong&#62; y &#60;i&#62; vs. &#60;em&#62; voy a tratar de explicarla. Aclaro que ésto es de interés solo para los Talibanes de [...]]]></description>
			<content:encoded><![CDATA[<p>Ya se discutió (y bien) este tema en otros lugares, pero a raíz de <a href="http://www.kabytes.com/desarrollo/10-errores-usuales-en-html-que-no-debes-cometer/">un post en Kabytes</a> y viendo que no está muy clara cual es la diferencia entre los tags  &lt;b&gt; vs. &lt;strong&gt; y &lt;i&gt; vs. &lt;em&gt; voy a tratar de explicarla. Aclaro que ésto es de interés solo para los <em>Talibanes de la Accesibilidad</em> y los <em>Maestros del SEO</em>.</p>
<p>Supongamos que quiero poner un texto en negrita, ¿utilizo &lt;b&gt; o &lt;strong&gt;? La respuesta es ninguno de los dos, hay que usar la propiedad CSS <strong>font-weight</strong>. Veamos:</p>
<p>El código XHTML:</p>
<pre class="brush: xhtml;">
&lt;p&gt;Este texto lo quiero en negrita&lt;/p&gt;
</pre>
<p>y el código CSS correspondiente:</p>
<pre class="brush: css;">
p { font-weight: bold; }
</pre>
<p>El caso de la itálica es similar, debemos usar la propiedad CSS font-style:</p>
<pre class="brush: css;">
p { font-style: italic; }
</pre>
<p>Entonces, ¿para qué sirven &lt;i&gt; y &lt;b&gt;? Estos tags sirven para dar formato, pero como enseña el <em>Tao del CSS</em> el formato debe darse a través de las hojas de estilo, por lo que en su lugar hay que usar las propiedades CSS <strong>font-style</strong> y <strong>font-weight</strong>.</p>
<p>En cuanto a &lt;em&gt; (emphasis) y &lt;strong&gt; (strong emphasis) son elementos estructurales que deben utilizarse en sentido semántico, da la casualidad (o no) que por defecto los navegadores los muestran, respectivamente, como itálica y negrita. Un <em>Talibán de la Accesibilidad</em> nos dirá que un texto con em será leído por un lector de pantalla con más énfasis, y un <em>Maestro del SEO</em> dirá que si ponemos strong a las keywords, Google indexará nuestra página en primer lugar.</p>
<p>Espero que se haya entendido la diferencia. Yo por mi parte no hago mucho caso de todo lo anterior y uso lo que más cómodo me queda.</p>
]]></content:encoded>
			<wfw:commentRss>http://vloox.com/251/diferencias-entre-los-tags-b-i-strong-y-em/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>¿Cuántos lenguajes de programación conocés?</title>
		<link>http://vloox.com/125/%c2%bfcuantos-lenguajes-de-programacion-conoces/</link>
		<comments>http://vloox.com/125/%c2%bfcuantos-lenguajes-de-programacion-conoces/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 02:27:00 +0000</pubDate>
		<dc:creator>Alejandro</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[juegos]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://vloox.com/?p=125</guid>
		<description><![CDATA[Encontré en LeegaR un test de 12 preguntas multiple choice en el que se nos muestra código fuente y debemos elegir en que lenguaje de programación está escrito. Como es típico en estos test nos da el código HTML para poner en nuestro blog y mostrarle al mundo cuanto sabemos.


Link: Name That Code
]]></description>
			<content:encoded><![CDATA[<p>Encontré en <a href="http://www.leegar.com.ar/BLOG/¿cuantos-codigos-de-programacion-reconoces/">LeegaR</a> un test de 12 preguntas <em>multiple choice</em> en el que se nos muestra código fuente y debemos elegir en que lenguaje de programación está escrito. Como es típico en estos test nos da el código HTML para poner en nuestro blog y mostrarle al mundo cuanto sabemos.<br />
<a href="http://www.oneplusyou.com/q/v/code"><img src="http://www.oneplusyou.com/q/img/badges/code_83.jpg" border="0" alt="Name That Code" /></a><a href="http://www.oneplusyou.com"><br />
</a></p>
<p>Link: <a href="http://www.oneplusyou.com/q/v/code">Name That Code</a></p>
]]></content:encoded>
			<wfw:commentRss>http://vloox.com/125/%c2%bfcuantos-lenguajes-de-programacion-conoces/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ASCII, Unicode, UTF-8 y la Iñtërnâçiônàlizæçiøn</title>
		<link>http://vloox.com/124/ascii-unicode-utf-8-y-la-internacionaliz%c3%a6ci%c3%b8n/</link>
		<comments>http://vloox.com/124/ascii-unicode-utf-8-y-la-internacionaliz%c3%a6ci%c3%b8n/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 01:59:43 +0000</pubDate>
		<dc:creator>Alejandro</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[ASCII]]></category>
		<category><![CDATA[unicode]]></category>
		<category><![CDATA[utf-8]]></category>

		<guid isPermaLink="false">http://vloox.com/?p=124</guid>
		<description><![CDATA[El título de este post corresponde a una serie de dos artículos que encontré en juque:

ASCII, Unicode, UTF-8 y la Iñtërnâçiônàlizæçiøn &#8211; parte I
ASCII, Unicode, UTF-8 y la Iñtërnâçiônàlizæçiøn &#8211; parte II

en ellos se cuenta un poco la historia de las codificaciones ASCII, Unicode, el estándar utf-8, como cambiar la codificación de una página HTML,  [...]]]></description>
			<content:encoded><![CDATA[<p>El título de este post corresponde a una serie de dos artículos que encontré en <strong>juque</strong>:</p>
<ul>
<li><a href="http://www.juque.cl/weblog/2006/01/25/ascii-unicode-utf8-y-la-iatarnaaianalizaaian-parte-i.html">ASCII, Unicode, UTF-8 y la Iñtërnâçiônàlizæçiøn &#8211; parte I</a></li>
<li><a href="http://www.juque.cl/weblog/2006/04/02/ascii-unicode-utf8-y-la-iatarnaaianalizaaian-parte-ii.html">ASCII, Unicode, UTF-8 y la Iñtërnâçiônàlizæçiøn &#8211; parte II</a></li>
</ul>
<p>en ellos se cuenta un poco la historia de las codificaciones ASCII, Unicode, el estándar utf-8, como cambiar la codificación de una página HTML,  un blog Wordpress y su base de datos MySQL a utf-8.</p>
]]></content:encoded>
			<wfw:commentRss>http://vloox.com/124/ascii-unicode-utf-8-y-la-internacionaliz%c3%a6ci%c3%b8n/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fuentes web seguras</title>
		<link>http://vloox.com/92/fuentes-web-seguras/</link>
		<comments>http://vloox.com/92/fuentes-web-seguras/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 04:15:48 +0000</pubDate>
		<dc:creator>Alejandro</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[fuentes]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://vloox.com/?p=92</guid>
		<description><![CDATA[Al momento de diseñar una página web es importante elegir fuentes que estén instaladas en todos los sistemas operativos, ya que si no están disponibles el navegador mostrará la fuente por defecto.
La siguiente tabla muestra las fuentes más comunes y con que sistemas operativos vienen. Son consideradas fuentes web seguras:



Genérica
Fuente
Windows
9x/2K/XP
Windows
Vista
Mac
Classic
Mac
OS X
Linux
Unix




serif
Cambria







Constantia







Times New Roman







Times







Georgia







sans-serif
Andale Mono







Arial







Arial Black







Calibri







Candara







Century [...]]]></description>
			<content:encoded><![CDATA[<p>Al momento de diseñar una página web es importante elegir fuentes que estén instaladas en todos los sistemas operativos, ya que si no están disponibles el navegador mostrará la fuente por defecto.</p>
<p>La siguiente tabla muestra las fuentes más comunes y con que sistemas operativos vienen. Son consideradas <strong>fuentes web seguras</strong>:</p>
<table border="0" cellspacing="0" cellpadding="3">
<thead>
<tr>
<th>Genérica</th>
<th>Fuente</th>
<th>Windows<br />
9x/2K/XP</th>
<th>Windows<br />
Vista</th>
<th>Mac<br />
Classic</th>
<th>Mac<br />
OS X</th>
<th>Linux<br />
Unix</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="5">serif</th>
<td style="font-family:Cambria">Cambria</td>
<td align="center"></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"></td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td style="font-family:Constantina">Constantia</td>
<td align="center"></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"></td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td><span style="font-family: Times New Roman;">Times New Roman</span></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<td style="font-family:Times">Times</td>
<td align="center"></td>
<td align="center"></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
</tr>
<tr>
<td style="font-family:Georgia">Georgia</td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<th rowspan="11">sans-serif</th>
<td style="font-family:Andale Mono">Andale Mono</td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<td style="font-family:Arial">Arial</td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<td style="font-family:Arial Black">Arial Black</td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<td style="font-family:Calibri">Calibri</td>
<td align="center"></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"></td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td style="font-family:Candara">Candara</td>
<td align="center"></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"></td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td style="font-family:Century Gothic">Century Gothic</td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<td style="font-family:Corbel">Corbel</td>
<td align="center"></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"></td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td style="font-family:Helvetica">Helvetica</td>
<td align="center"></td>
<td align="center"></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
</tr>
<tr>
<td style="font-family:Impact">Impact</td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<td style="font-family:Trebuchet MS">Trebuchet MS</td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<td style="font-family:Verdana">Verdana</td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<th>cursive</th>
<td style="font-family:Comic Sans MS">Comic Sans MS</td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<th rowspan="3">monospace</th>
<td style="font-family:Consolas">Consolas</td>
<td align="center"></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"></td>
<td align="center"></td>
<td align="center"></td>
</tr>
<tr>
<td style="font-family:Courier New">Courier New</td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/yellow.gif" alt="Less Common Web Safe Font" /></td>
</tr>
<tr>
<td style="font-family:Courier">Courier</td>
<td align="center"></td>
<td align="center"></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
<td align="center"><img src="http://vloox.com/wp-content/uploads/2008/04/green.gif" alt="Common Web Safe Font" /></td>
</tr>
</tbody>
</table>
<p><small>La marca verde indica fuentes muy comunes, la amarilla indica fuentes no tan comunes pero generalmente aceptadas como fuentes web seguras.</small></p>
<p>Para mayor compatibilidad es conveniente indicar fuentes alternativas. Por ejemplo:</p>
<p><code>#fuente {<br />
font-family: Trebuchet, Verdana, Helvetica, sans-serif;<br />
}</code></p>
<p>Si la fuente primaria (Trebuchet) no está instalada el navegador usará la siguiente (Verdana), y así sucesivamente. Se indica la fuente genérica al final por si ninguna de las anteriores está instalada (en el ejemplo se mostrará la fuente sans-serif genérica).</p>
<p>Fuente: <a title="Fonts on the web and a list of web safe fonts" href="http://dustinbrewer.com/fonts-on-the-web-and-a-list-of-web-safe-fonts/">Dustin Brewer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://vloox.com/92/fuentes-web-seguras/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
