<?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>voragine.net &#187; HTML</title>
	<atom:link href="http://voragine.net/etiquetas/html/feed" rel="self" type="application/rss+xml" />
	<link>http://voragine.net</link>
	<description>Autonomía digital y tecnológica.</description>
	<lastBuildDate>Mon, 06 Feb 2012 16:55:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3-RC3-19589</generator>
		<item>
		<title>Formularios con efectos onclick y onfocus de JavaScript pero que utilizan solo HTML y CSS</title>
		<link>http://voragine.net/weblogs/formularios-con-efectos-onclick-y-onfocus-de-javascript-pero-que-utilizan-solo-html-y-css</link>
		<comments>http://voragine.net/weblogs/formularios-con-efectos-onclick-y-onfocus-de-javascript-pero-que-utilizan-solo-html-y-css#comments</comments>
		<pubDate>Fri, 14 Oct 2011 12:37:01 +0000</pubDate>
		<dc:creator>skotperez</dc:creator>
				<category><![CDATA[Desarrollo web]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://voragine.net/?p=765</guid>
		<description><![CDATA[Examinando el <a title="The Twenty Eleven Theme -- WordPress.com" href="http://twentyelevendemo.wordpress.com/">tema Twentyeleven de WordPress</a> he encontrado una solución bien elegante para hacer formularios sin javascript pero con efectos equivalentes, que funcionan utilizando únicamente HTML y CSS. Con este código obtendrás un formulario del estilo del que puedes usar para comentar en esta página.]]></description>
			<content:encoded><![CDATA[<p>Examinando el <a title="The Twenty Eleven Theme -- WordPress.com" href="http://twentyelevendemo.wordpress.com/">tema Twentyeleven de WordPress</a> he encontrado una solución bien elegante para hacer formularios sin javascript pero con efectos equivalentes, que funcionan utilizando únicamente HTML y CSS. Con este código obtendrás un formulario del estilo del que puedes usar para comentar en esta página.</p>
<p>Construimos el DOM utilizando las etiquetas fieldset, label, input y textarea:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;form id=&quot;form&quot; action=&quot;http://url.de/la-accion.php&quot; method=&quot;post&quot;&gt;

 &lt;fieldset&gt;
  &lt;label for=&quot;nombre&quot;&gt;Nombre&lt;/label&gt;
  &lt;input id=&quot;nombre&quot; tabindex=&quot;1&quot; type=&quot;text&quot; name=&quot;nombre&quot; value=&quot;&quot; size=&quot;22&quot; /&gt;
 &lt;/fieldset&gt;

 &lt;fieldset&gt;
  &lt;label for=&quot;mensaje&quot;&gt;Mensaje&lt;/label&gt;
  &lt;textarea id=&quot;mensaje&quot; tabindex=&quot;2&quot; name=&quot;mensaje&quot; rows=&quot;10&quot; cols=&quot;100%&quot;&gt;&lt;/textarea&gt;
 &lt;/fieldset&gt;

 &lt;fieldset&gt;
  &lt;input id=&quot;enviar&quot; tabindex=&quot;3&quot; type=&quot;submit&quot; name=&quot;enviar&quot; value=&quot;Enviar mensaje&quot; /&gt;
 &lt;/fieldset&gt;

&lt;/form&gt;
</pre>
<p>Y le aplicamos los siguientes estilos CSS:</p>
<pre class="brush: css; title: ; notranslate">
#form fieldset {
        position: relative;
        margin: 1em 0;
}
#form label {
        display: inline-block;
        left: 6px;
        min-width: 60px;
        padding: 4px 10px;
        position: relative;
        top: 28px;
        z-index: 1;
}
#form input[type=&quot;text&quot;],
#form textarea {
        background: #fff;
        position: relative;
        padding: 10px;
        text-indent: 80px;
        width: 478px;
        border: 1px solid #000;
}
#form input[type=&quot;text&quot;]:focus,
#form textarea:focus {
        text-indent: 0;
        z-index: 1;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://voragine.net/weblogs/formularios-con-efectos-onclick-y-onfocus-de-javascript-pero-que-utilizan-solo-html-y-css/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Las etiquetas article y section de HTML5</title>
		<link>http://voragine.net/weblogs/las-etiquetas-article-y-section-de-html5</link>
		<comments>http://voragine.net/weblogs/las-etiquetas-article-y-section-de-html5#comments</comments>
		<pubDate>Mon, 10 Oct 2011 17:28:12 +0000</pubDate>
		<dc:creator>skotperez</dc:creator>
				<category><![CDATA[Breves]]></category>
		<category><![CDATA[Desarrollo web]]></category>
		<category><![CDATA[article]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[section]]></category>

		<guid isPermaLink="false">http://voragine.net/?p=759</guid>
		<description><![CDATA[En <em>Standardistas</em> he encontrado la mejor explicación sobre <strong><a title="HTML5: section v. article -- Standardistas" href="http://www.standardista.com/html5-section-v-article/">cómo usar las nuevas etiquetas <code>section</code> y <code>article</code></a></strong> de HTML5, <a title="HTML5 articles and sections: what’s the difference? -- brucelawson.co.uk" href="http://www.brucelawson.co.uk/2010/html5-articles-and-sections-whats-the-difference/">que tanto debate han traído</a>, haciendo una analogía con la estructura de un periódico: «The paper comes in sections. You have the sports section, real estate section, maybe home &#38; garden section, etc. Each of those sections, in turn, has articles in it. And, some of those articles are divided into sections themselves.» Obvio, pero aclara saber que se pueden meter los unos dentro de los otros y viceversa.]]></description>
			<content:encoded><![CDATA[<p>En <em>Standardistas</em> he encontrado la mejor explicación sobre <strong><a title="HTML5: section v. article -- Standardistas" href="http://www.standardista.com/html5-section-v-article/">cómo usar las nuevas etiquetas <code>section</code> y <code>article</code></a></strong> de HTML5, <a title="HTML5 articles and sections: what’s the difference? -- brucelawson.co.uk" href="http://www.brucelawson.co.uk/2010/html5-articles-and-sections-whats-the-difference/">que tanto debate han traído</a>, haciendo una analogía con la estructura de un periódico: «The paper comes in sections. You have the sports section, real estate section, maybe home &amp; garden section, etc. Each of those sections, in turn, has articles in it. And, some of those articles are divided into sections themselves.» Obvio, pero aclara saber que se pueden meter los unos dentro de los otros y viceversa.</p>
]]></content:encoded>
			<wfw:commentRss>http://voragine.net/weblogs/las-etiquetas-article-y-section-de-html5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cómo comprobar la compatibilidad de HTML5 en diferentes navegadores</title>
		<link>http://voragine.net/weblogs/como-comprobar-la-compatibilidad-de-html5-en-diferentes-navegadores</link>
		<comments>http://voragine.net/weblogs/como-comprobar-la-compatibilidad-de-html5-en-diferentes-navegadores#comments</comments>
		<pubDate>Fri, 07 Oct 2011 08:00:16 +0000</pubDate>
		<dc:creator>skotperez</dc:creator>
				<category><![CDATA[Breves]]></category>
		<category><![CDATA[Desarrollo web]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML validator]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://voragine.net/?p=751</guid>
		<description><![CDATA[La página html5test.com permite comprobar la <strong><a title="THE HTML5 TEST – HOW WELL DOES YOUR BROWSER SUPPORT HTML5?" href="http://html5test.com/index.html">compatibilidad de los navegadores más extendidos con HTML5</a></strong>, en sus versiones estable y en desarrollo. Según esta página <a title="THE HTML5 TEST – HOW WELL DOES YOUR BROWSER SUPPORT HTML5?" href="http://html5test.com/index.html">ningún navegador soporta por completo HTML5</a>. Para ver concretamente los trozos de código que no cumplen con el futuro estándar abierto de la web, se pude usar el <strong><a title="Markup Validation Service -- W3C" href="http://validator.w3.org/">validador del W3C</a></strong>.]]></description>
			<content:encoded><![CDATA[<p>La página html5test.com permite comprobar la <strong><a title="THE HTML5 TEST – HOW WELL DOES YOUR BROWSER SUPPORT HTML5?" href="http://html5test.com/index.html">compatibilidad de los navegadores más extendidos con HTML5</a></strong>, en sus versiones estable y en desarrollo. Según esta página <a title="THE HTML5 TEST – HOW WELL DOES YOUR BROWSER SUPPORT HTML5?" href="http://html5test.com/index.html">ningún navegador soporta por completo HTML5</a>. Para ver concretamente los trozos de código que no cumplen con el futuro estándar abierto de la web, se pude usar el <strong><a title="Markup Validation Service -- W3C" href="http://validator.w3.org/">validador del W3C</a></strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://voragine.net/weblogs/como-comprobar-la-compatibilidad-de-html5-en-diferentes-navegadores/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cabecera mínima en HTML5 para WordPress</title>
		<link>http://voragine.net/weblogs/cabecera-minima-en-html5-para-wordpress</link>
		<comments>http://voragine.net/weblogs/cabecera-minima-en-html5-para-wordpress#comments</comments>
		<pubDate>Thu, 06 Oct 2011 08:00:14 +0000</pubDate>
		<dc:creator>skotperez</dc:creator>
				<category><![CDATA[Desarrollo web]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[get_bloginfo]]></category>
		<category><![CDATA[head]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[wp_head]]></category>

		<guid isPermaLink="false">http://voragine.net/?p=747</guid>
		<description><![CDATA[Con la aparición de la nueva versión de HTML, HTML5, se impone actualizar el código de muchas páginas o programar las nuevas <strong><a title="Construyendo una cabecera mínima pero correcta en HTML5: diferencias entre HTML4.01 y HTML5 dentro de la etiqueta head -- voragine.net" href="http://voragine.net/weblogs/construyendo-una-cabecera-minima-pero-correcta-en-html5-diferencias-entre-html4-01-y-html5-dentro-de-la-etiqueta-head">teniendo en cuenta las nuevas etiquetas y atributos</a></strong>. En el caso de que estemos trabajando dentro del sistema <strong>WordPress</strong> además debemos integrar los comandos propios de este gestor de contenidos.]]></description>
			<content:encoded><![CDATA[<p>Con la aparición de la nueva versión de HTML, HTML5, se impone actualizar el código de muchas páginas o programar las nuevas <strong><a title="Construyendo una cabecera mínima pero correcta en HTML5: diferencias entre HTML4.01 y HTML5 dentro de la etiqueta head -- voragine.net" href="http://voragine.net/weblogs/construyendo-una-cabecera-minima-pero-correcta-en-html5-diferencias-entre-html4-01-y-html5-dentro-de-la-etiqueta-head">teniendo en cuenta las nuevas etiquetas y atributos</a></strong>. En el caso de que estemos trabajando dentro del sistema <strong>WordPress</strong> además debemos integrar los comandos propios de este gestor de contenidos.</p>
<p>A continuación una cabecera mínima para WordPress que integra HTML5, comentada:</p>
<pre class="brush: php; title: ; notranslate">
&lt;!DOCTYPE html&gt;

&lt;?php // discriminamos según el navegador para hacer funcionar HTML5 en todos ?&gt;
&lt;!--[if IE 6]&gt;
&lt;html id=&quot;ie6&quot; &lt;?php language_attributes(); ?&gt;&gt;
&lt;![endif]--&gt;
&lt;!--[if IE 7]&gt;
&lt;html id=&quot;ie7&quot; &lt;?php language_attributes(); ?&gt;&gt;
&lt;![endif]--&gt;
&lt;!--[if IE 8]&gt;
&lt;html id=&quot;ie8&quot; &lt;?php language_attributes(); ?&gt;&gt;
&lt;![endif]--&gt;
&lt;!--[if !(IE 6) | !(IE 7) | !(IE <img src='http://voragine.net/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' />  ]&gt;&lt;!--&gt;
&lt;html &lt;?php language_attributes(); ?&gt;&gt;
&lt;!--&lt;![endif]--&gt;

&lt;head&gt;
&lt;meta charset=&quot;&lt;?php bloginfo( 'charset' ); ?&gt;&quot; /&gt;

&lt;?php // almacenamos la información que vayamos a usar varias veces para no hacer varias consultas iguales a base de datos
$blogname = get_bloginfo('name');
$blogdesc = get_bloginfo('description');
$blogurl = get_bloginfo('url');
$blogtemplate = get_bloginfo('template_directory');
?&gt;

&lt;title&gt;
&lt;?php // el siguiente código devuelve el título de la página en función del contenido que se esté mostrando: home, archivos, single...
// hack del tema twentyeleven
        global $page, $paged;

        wp_title( '|', true, 'right' );

        // Add the blog name.
        bloginfo( 'name' );

        // Add the blog description for the home/front page.
        $site_description = get_bloginfo( 'description', 'display' );
        if ( $site_description &amp;&amp; ( is_home() || is_front_page() ) )
                echo &quot; | $site_description&quot;;

        // Add a page number if necessary:
        if ( $paged &gt;= 2 || $page &gt;= 2 )
                echo ' | ' . sprintf( __( 'Page %s', 'twentyeleven' ), max( $paged, $page ) );

        ?&gt;
&lt;/title&gt;

&lt;meta content=&quot;Nombre del autor&quot; name=&quot;author&quot; /&gt;
&lt;meta content=&quot;&lt;?php echo $blogdesc ?&gt;&quot; name=&quot;description&quot; /&gt;
&lt;meta content=&quot;etiqueta1, etiqueta2, etiqueta3&quot; name=&quot;keywords&quot; /&gt;

&lt;?php // el relationships meta data profile antes se incluía con un atributo de la etiqueta head que con HTML5 ha desaparecido; ahora hay que incluirlo con una etiqueta link ?&gt;
&lt;link rel=&quot;profile&quot; href=&quot;http://gmpg.org/xfn/11&quot; /&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;&lt;?php bloginfo('stylesheet_url'); ?&gt;&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;&lt;?php echo &quot;$blogtemplate/style.php&quot; ?&gt;&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;&lt;?php echo &quot;$blogtemplate/style-print.css&quot; ?&gt;&quot; type=&quot;text/css&quot; media=&quot;print&quot; /&gt;
&lt;link rel=&quot;alternate&quot; type=&quot;application/rss+xml&quot; title=&quot;&lt;?php echo $blogname; ?&gt; RSS Feed suscription&quot; href=&quot;&lt;?php bloginfo('rss2_url'); ?&gt;&quot; /&gt;
&lt;link rel=&quot;alternate&quot; type=&quot;application/atom+xml&quot; title=&quot;&lt;?php echo $blogname; ?&gt; Atom Feed suscription&quot; href=&quot;&lt;?php bloginfo('atom_url'); ?&gt;&quot; /&gt;
&lt;link rel=&quot;pingback&quot; href=&quot;&lt;?php bloginfo('pingback_url'); ?&gt;&quot; /&gt;

&lt;?php // este hook de WordPress es lo que devuelve las funciones complementarias necesarias para plugins y otros módulos, por ejemplo la hoja de estilos CSS de la barra que aparece cuando se ha iniciado sesión
wp_head(); ?&gt;

&lt;/head&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://voragine.net/weblogs/cabecera-minima-en-html5-para-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cómo configurar el formato de las fechas con la etiqueta time de HTML5: el atributo datetime</title>
		<link>http://voragine.net/weblogs/como-configurar-el-formato-de-las-fechas-con-la-etiqueta-time-de-html5-el-atributo-datetime</link>
		<comments>http://voragine.net/weblogs/como-configurar-el-formato-de-las-fechas-con-la-etiqueta-time-de-html5-el-atributo-datetime#comments</comments>
		<pubDate>Wed, 05 Oct 2011 15:07:32 +0000</pubDate>
		<dc:creator>skotperez</dc:creator>
				<category><![CDATA[Desarrollo web]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[get_the_time]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[the_time]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://voragine.net/?p=744</guid>
		<description><![CDATA[Las fechas que envolvamos con la etiqueta time tienen que tener un formato determinado para que se indexen correctamente en los buscadores, un formato que no tiene por qué ser el más adecuado para un lector. Para conseguir un formato más humano en las fechas y las horas que envolvemos con la etiqueta <code>time</code> de HTML5 <strong><a title="Marking HTML5 time with PHP -- steve st's blog" href="http://stevest.com/2011/marking-html5-time-with-php/">podemos usar el atributo </a><code><a title="Marking HTML5 time with PHP -- steve st's blog" href="http://stevest.com/2011/marking-html5-time-with-php/">datetime</a></code></strong>.]]></description>
			<content:encoded><![CDATA[<p>Las fechas que envolvamos con la etiqueta time tienen que tener un formato determinado para que se indexen correctamente en los buscadores, un formato que no tiene por qué ser el más adecuado para un lector. Para conseguir un formato más humano en las fechas y las horas que envolvemos con la etiqueta <code>time</code> de HTML5 <strong><a title="Marking HTML5 time with PHP -- steve st's blog" href="http://stevest.com/2011/marking-html5-time-with-php/">podemos usar el atributo </a><code><a title="Marking HTML5 time with PHP -- steve st's blog" href="http://stevest.com/2011/marking-html5-time-with-php/">datetime</a></code></strong>. Por ejemplo:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;time datetime=&quot;2011-10-05&quot;&gt;5 de octubre de 2011&lt;/time&gt;
&lt;time datetime=&quot;2011-10-05&quot;&gt;Hoy&lt;/time&gt;
</pre>
<p>Si estamos trabajando con el gestor de contenidos WordPress se traduciría en lo siguiente:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
$post_date_human = get_the_time('d \d\e F \d\e Y');
 $post_date = get_the_time('Y-m-d');
 echo &quot;&lt;time datetime=&quot;$post_date&quot;&gt;$post_date_human&lt;/time&gt;&quot;;
?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://voragine.net/weblogs/como-configurar-el-formato-de-las-fechas-con-la-etiqueta-time-de-html5-el-atributo-datetime/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Construyendo una cabecera mínima pero correcta en HTML5: diferencias entre HTML4.01 y HTML5 dentro de la etiqueta head</title>
		<link>http://voragine.net/weblogs/construyendo-una-cabecera-minima-pero-correcta-en-html5-diferencias-entre-html4-01-y-html5-dentro-de-la-etiqueta-head</link>
		<comments>http://voragine.net/weblogs/construyendo-una-cabecera-minima-pero-correcta-en-html5-diferencias-entre-html4-01-y-html5-dentro-de-la-etiqueta-head#comments</comments>
		<pubDate>Tue, 04 Oct 2011 11:46:46 +0000</pubDate>
		<dc:creator>skotperez</dc:creator>
				<category><![CDATA[Desarrollo web]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://voragine.net/?p=642</guid>
		<description><![CDATA[Con HTML5 han cambiado algunas etiquetas HTML, han dejado de ser válidos algunos atributos, han aparecido algunos nuevos, también han surgido nuevas etiquetas con sus nuevos atributos. Recopilamos aquí los cambios más significativos dentro de head, de cara a construir una <a title="Easy HTML5 Template -- impressivewebs.com" href="http://www.impressivewebs.com/demo-files/easy-html5-template/">cabecera HTML limpia y correcta</a>, y aprovechar todo el potencial de HTML5.]]></description>
			<content:encoded><![CDATA[<p>Con HTML5 han cambiado algunas etiquetas HTML, han dejado de ser válidos algunos atributos, han aparecido algunos nuevos, también han surgido nuevas etiquetas con sus nuevos atributos. Recopilamos aquí los cambios más significativos dentro de head, de cara a construir una <a title="Easy HTML5 Template -- impressivewebs.com" href="http://www.impressivewebs.com/demo-files/easy-html5-template/">cabecera HTML limpia y correcta</a>, y aprovechar todo el potencial de HTML5.</p>
<h2>!DOCTYPE</h2>
<p>Con HTML5 se ha simplificado; con HTML4.01 había tres posibles doctypes, ahora solo hay uno: HTML. <a title="HTML5 DOCTYPE Declaration -- w3schools.com" href="http://www.w3schools.com/html5/tag_doctype.asp">Más info</a>.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
</pre>
<h2>html</h2>
<p>Mediante la etiqueta html haremos la distinción entre los navegadores que soportan HTML5, los que soportan JavaScript, <a title="Conditional stylesheets vs CSS hacks? Answer: Neither! -- Paul Irish" href="http://paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/">según recomiendan varios desarrolladores</a>.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;!--[if lt IE 7 ]&gt; &lt;html class=&quot;ie6&quot;&gt; &lt;![endif]--&gt;
&lt;!--[if IE 7 ]&gt;    &lt;html class=&quot;ie7&quot;&gt; &lt;![endif]--&gt;
&lt;!--[if IE 8 ]&gt;    &lt;html class=&quot;ie8&quot;&gt; &lt;![endif]--&gt;
&lt;!--[if IE 9 ]&gt;    &lt;html class=&quot;ie9&quot;&gt; &lt;![endif]--&gt;
&lt;!--[if (gt IE 9)|!(IE)]&gt;&lt;!--&gt; &lt;html class=&quot;&quot;&gt; &lt;!--&lt;![endif]--&gt;

&lt;/html&gt;
</pre>
<h2>head</h2>
<p>Ha desaparecido el atributo <code>profile</code>. <a title="HTML5 head Tag -- w3schools.com" href="http://www.w3schools.com/html5/tag_head.asp">Más info</a>.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;head&gt;
...
&lt;/head&gt;
</pre>
<h2>title</h2>
<p>Sin cambios.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;title&gt;Título del documento&lt;/title&gt;
</pre>
<h2>meta</h2>
<p>Nuevo atributo <code>charset</code> para definir el juego de caracteres del documento. <code>scheme</code> deja de estar soportado. <a title="HTML5 meta Tag -- w3schools.com" href="http://www.w3schools.com/html5/tag_meta.asp">Más info</a>.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;meta charset=&quot;utf-8&quot; /&gt;
</pre>
<p>El resto de la información sobre el documento se sigue especificando mediante el par de atributos <code>name</code> y <code>content</code>. <a title="HTML5 meta name Attribute -- w3schools.com" href="http://www.w3schools.com/html5/att_meta_name.asp">Listado completo de los valores del atributo name</a>. Se pueden <a title="MetaExtensions" href="http://wiki.whatwg.org/wiki/MetaExtensions">definir valores diferentes para el atributo name</a>.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;meta content=&quot;Nombre del Autor&quot; name=&quot;author&quot; /&gt;
&lt;meta content=&quot;Descripción de la página&quot; name=&quot;description&quot; /&gt;
&lt;meta content=&quot;etiqueta1, etiqueta2, etiqueta3&quot; name=&quot;keywords&quot; /&gt;
</pre>
<h2>link</h2>
<p>Las etiquetas <code>link</code> no necesitan ya el atributo <code>type</code>, pero conviene dejarlo por compatibilidad con navegadores que no soportan HTML5.</p>
<p>La siguiente línea es válida según HTML5:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;link rel=&quot;stylesheet&quot; href=&quot;css/style.css&quot; /&gt;
</pre>
<p>Y con ésta otra mantenemos la compatibilidad con navegadores que no soportan HTML5.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;link rel=&quot;stylesheet&quot; href=&quot;css/style.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
</pre>
<p>Javier Casares explica la <strong><a title="Los enlaces en HTML5 y el SEO -- Javier Casares" href="http://javiercasares.com/blog/los-enlaces-en-html5-y-el-seo/">importancia del atributo rel de cara al SEO en HTML5</a></strong>.</p>
<p>Para incluir favicon basta colocarlo en el raíz de nuestro alojamiento web, no hace falta incluir el <code>rel="shortcut icon"</code>.<br />
La cabecera completa:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;

&lt;!--[if lt IE 7 ]&gt; &lt;html class=&quot;ie6&quot;&gt; &lt;![endif]--&gt;
&lt;!--[if IE 7 ]&gt;    &lt;html class=&quot;ie7&quot;&gt; &lt;![endif]--&gt;
&lt;!--[if IE 8 ]&gt;    &lt;html class=&quot;ie8&quot;&gt; &lt;![endif]--&gt;
&lt;!--[if IE 9 ]&gt;    &lt;html class=&quot;ie9&quot;&gt; &lt;![endif]--&gt;
&lt;!--[if (gt IE 9)|!(IE)]&gt;&lt;!--&gt; &lt;html class=&quot;&quot;&gt; &lt;!--&lt;![endif]--&gt;

&lt;head&gt;
&lt;meta charset=&quot;utf-8&quot; /&gt;
&lt;title&gt;Título del documento&lt;/title&gt;

&lt;meta content=&quot;Nombre del Autor&quot; name=&quot;author&quot; /&gt;
&lt;meta content=&quot;Descripción de la página&quot; name=&quot;description&quot; /&gt;
&lt;meta content=&quot;etiqueta1, etiqueta2, etiqueta3&quot; name=&quot;keywords&quot; /&gt;

&lt;link rel=&quot;stylesheet&quot; href=&quot;css/style.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
&lt;/head&gt;
&lt;/html&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://voragine.net/weblogs/construyendo-una-cabecera-minima-pero-correcta-en-html5-diferencias-entre-html4-01-y-html5-dentro-de-la-etiqueta-head/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>12 tutoriales para dar estilo a los formularios</title>
		<link>http://voragine.net/weblogs/12-tutoriales-para-dar-estilo-a-los-formularios</link>
		<comments>http://voragine.net/weblogs/12-tutoriales-para-dar-estilo-a-los-formularios#comments</comments>
		<pubDate>Wed, 02 Dec 2009 16:05:38 +0000</pubDate>
		<dc:creator>follonero</dc:creator>
				<category><![CDATA[Breves]]></category>
		<category><![CDATA[Desarrollo web]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[formulario de búsqueda]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://voragine.net/?p=291</guid>
		<description><![CDATA[<a href="http://www.queness.com/post/1274/12-useful-tutorials-to-style-web-forms">12 Useful Tutorials to Style Web Forms</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.queness.com/post/1274/12-useful-tutorials-to-style-web-forms">12 Useful Tutorials to Style Web Forms</a></p>
]]></content:encoded>
			<wfw:commentRss>http://voragine.net/weblogs/12-tutoriales-para-dar-estilo-a-los-formularios/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutoriales “Panic is over” de Gosquared</title>
		<link>http://voragine.net/weblogs/tutoriales-panic-is-over-de-gosquared</link>
		<comments>http://voragine.net/weblogs/tutoriales-panic-is-over-de-gosquared#comments</comments>
		<pubDate>Sat, 22 Dec 2007 02:00:09 +0000</pubDate>
		<dc:creator>skotperez</dc:creator>
				<category><![CDATA[Desarrollo web]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Gosquared]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://voragine.net/recursos/tutoriales-panic-is-over-de-gosquared</guid>
		<description><![CDATA[Liquidicity es el blog del estudio de diseño Gosquared. Tienen una sección muy maja en la que incluyen manuales de referencia: CSS, HTML. Muy resumiditos, caben en un pantallazo. Se pueden descargar en PDF: HTML Help Sheet (PDF, 112kB) CSS Help Sheet (PDF, 168kB) En colaboración con wpcandy han editado uno de estos manuales de [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gosquared.com/liquidicity/" title="Liquidicity blog"><strong>Liquidicity</strong></a> es el blog del estudio de diseño <a href="http://www.gosquared.com/" title="">Gosquared</a>. Tienen una <a href="http://www.gosquared.com/liquidicity/archives/category/tutorials/" title="Liquidicity: Tutorials">sección muy maja</a> en la que incluyen manuales de referencia: <a href="http://www.gosquared.com/liquidicity/archives/33" title="Liquidicity: CSS Help Sheet. Panic Over.">CSS</a>, <a href="http://www.gosquared.com/liquidicity/archives/51" title="Liquidicity: HTML Help Sheet. Panic Over.">HTML</a>. Muy resumiditos, caben en un pantallazo. Se pueden descargar en PDF: </p>
<ul>
<li><a href="http://www.gosquared.com/images/help_sheets/HTML%20Help%20Sheet.pdf">HTML Help Sheet</a> (PDF, 112kB) </li>
<li><a href="http://www.gosquared.com/images/help_sheets/CSS%20Help%20Sheet.pdf">CSS Help Sheet</a> (PDF, 168kB)</li>
</ul>
<p>En colaboración con <a href="http://wpcandy.com/" title="wp candy blog">wpcandy</a> han editado uno de estos manuales de referencia de una sola página, <a href="http://wpcandy.com/the-wordpress-help-sheet/" title="wpcandy: The WordPress Help Sheet.">The WordPress Help Sheet</a>, ideal para iniciarse y tenerla como referencia a la hora de cambiar o desarrollar plantillas.<br />
En <a href="http://www.lordmax.org">lordmax.org</a> la han <a href="http://www.lordmax.org/2007/11/04/wordpress-theme-cheat-sheet/" title="lordmax.org: WordPress Theme Cheat Sheet">traducido al español</a>.</p>
<ul>
<li><a href="http://www.lordmax.org/descargas/WordPress-Help-Sheet-ES.pdf" title="lordmax.org: WordPress Theme Cheat Sheet">Hoja de referencia de WordPress</a>, (PDF, 289kB)</li>
<li><a href="http://wpcandy.com/wp-content/uploads/WordPress-Help-Sheet.pdf" title="wpcandy: The WordPress Help Sheet download">The WordPress Help Sheet</a> (PDF, 592kB)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://voragine.net/weblogs/tutoriales-panic-is-over-de-gosquared/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

