<?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>Guilherme Müller &#124; Freelance Front-end Developer</title>
	<atom:link href="http://guilhermemuller.com.br/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://guilhermemuller.com.br/blog</link>
	<description>Artigos e tutoriais sobre Front-end Design, HTML, CSS e Javascript</description>
	<lastBuildDate>Tue, 07 Feb 2012 20:03:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Uma Página HTML5 Básica</title>
		<link>http://guilhermemuller.com.br/blog/2012/01/12/uma-pagina-html5-basica/</link>
		<comments>http://guilhermemuller.com.br/blog/2012/01/12/uma-pagina-html5-basica/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 11:31:03 +0000</pubDate>
		<dc:creator>Guilherme Müller</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutoriais]]></category>

		<guid isPermaLink="false">http://guilhermemuller.com.br/blog/?p=660</guid>
		<description><![CDATA[Com o HTML5, muito ficou simplificado na hora de iniciar um documento HTML. Neste post iremos analisar o mínimo de código que precisamos para um documento HTML5. Todo o código aqui mostrado pode ser utilizado hoje, pois devido à natureza &#8220;tolerante&#8221; dos navegadores, não irá causar nenhum problema de compatibilidade (e é código HTML5 válido). [...]]]></description>
			<content:encoded><![CDATA[<p>Com o HTML5, muito ficou simplificado na hora de iniciar um documento HTML. Neste post iremos analisar o mínimo de código que precisamos para um documento HTML5.</p>
<p><span id="more-660"></span></p>
<p>Todo o código aqui mostrado pode ser utilizado hoje, pois devido à natureza &#8220;tolerante&#8221; dos navegadores, não irá causar nenhum problema de compatibilidade (e é código HTML5 válido). Neste documento também estarei utilizando a sintaxe do HTML, e não do XHTML, portanto as tags que auto-fecham não terão a barra &#8220;/&#8221; no final (mas nada impede de utilizar a sintaxe XHTML).</p>
<p>O que iremos incluir no documento:</p>
<ol>
<li>DOCTYPE (para que o navegador reconheça que deve funcionar no &#8220;standards mode&#8221;)</li>
<li>Tag <code>html</code> com o atributo <code>lang</code>, para identificar a língua na qual o conteúdo do documento será escrito</li>
<li>Tag <code>head</code>, com as informações de cabeçalho não visíveis da página</li>
<li>Tag <code>meta</code> especificando a codificação da página (charset)</li>
<li>Tag <code>title</code> com o título da página</li>
<li>Tag <code>body</code> com o conteúdo da página</li>
</ol>
<p>Vamos começar com o doctype:</p>
<p>[html]&lt;!doctype html&gt;[/html]</p>
<p>Bem simples, não? Este doctype até dá para decorar, ao contrário dos que utilizávamos antes. Perceba que não há uma versão do HTML especificada no doctype, o que o torna um doctype geral para qualquer versão do HTML. A sua única função é &#8220;ligar&#8221; o modo de padrões web (standards mode) dos navegadores.</p>
<p>Segundo, abrimos a tag <code>html</code>:</p>
<p>[html]&lt;html lang=&#8221;pt-BR&#8221;&gt;[/html]</p>
<p>Perceba o atributo <code>lang</code>, diferente do que era feito no XHTML para identificar a língua.</p>
<p>Em seguida, a tag <code>head</code>:</p>
<p>[html]&lt;head&gt;[/html]</p>
<p>Dentro, a tag <code>meta</code> especificando a codificação (também consideravelmente mais simples que antes):</p>
<p>[html]&lt;meta charset=&#8221;UTF-8&#8243;&gt;[/html]</p>
<p>Em seguida, a tag <code>title</code> que já conhecemos bem:</p>
<p>[html]&lt;title&gt;Uma Página HTML5 Básica&lt;/title&gt;[/html]</p>
<p>Por fim, a tag <code>body</code>, com o conteúdo da página:</p>
<p>[html]<br />
&lt;body&gt;<br />
&lt;!&#8211; conteúdo da página &#8211;&gt;<br />
&lt;/body&gt;<br />
[/html]</p>
<p>Abaixo, o código completo:</p>
<p>[html]<br />
&lt;!doctype html&gt;<br />
&lt;html lang=&#8221;pt-BR&#8221;&gt;<br />
  &lt;head&gt;<br />
    &lt;meta charset=&#8221;UTF-8&#8243;&gt;<br />
    &lt;title&gt;Uma Página HTML5 Básica&lt;/title&gt;<br />
  &lt;/head&gt;<br />
  &lt;body&gt;<br />
    &lt;!&#8211; conteúdo da página &#8211;&gt;<br />
  &lt;/body&gt;<br />
&lt;/html&gt;<br />
[/html]</p>
<h3>Inserindo CSS e Javascript</h3>
<p>Para finalizar, o código para inserir CSS e Javascript também fica um pouco mais simples, não precisando ser especificado o atributo <code>type</code>:</p>
<p>[html]<br />
&lt;script src=&#8221;arquivo.js&#8221;&gt;&lt;/script&gt;<br />
&lt;link href=&#8221;arquivo.css&#8221; rel=&#8221;stylesheet&#8221;&gt;<br />
[/html]</p>
]]></content:encoded>
			<wfw:commentRss>http://guilhermemuller.com.br/blog/2012/01/12/uma-pagina-html5-basica/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Karas Móveis</title>
		<link>http://guilhermemuller.com.br/blog/2011/12/16/karas-moveis/</link>
		<comments>http://guilhermemuller.com.br/blog/2011/12/16/karas-moveis/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 17:15:49 +0000</pubDate>
		<dc:creator>Guilherme Müller</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://guilhermemuller.com.br/blog/?p=712</guid>
		<description><![CDATA[Criação: Elisangela Martins / Guilherme Müller &#124; Front-end e sistema: Guilherme Müller]]></description>
			<content:encoded><![CDATA[<p>Criação: Elisangela Martins / Guilherme Müller | Front-end e sistema: Guilherme Müller</p>
]]></content:encoded>
			<wfw:commentRss>http://guilhermemuller.com.br/blog/2011/12/16/karas-moveis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CEABS</title>
		<link>http://guilhermemuller.com.br/blog/2011/12/16/ceabs/</link>
		<comments>http://guilhermemuller.com.br/blog/2011/12/16/ceabs/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 17:14:34 +0000</pubDate>
		<dc:creator>Guilherme Müller</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://guilhermemuller.com.br/blog/?p=710</guid>
		<description><![CDATA[Criação: Nexo Design &#124; Front-end: Guilherme Müller &#160;]]></description>
			<content:encoded><![CDATA[<p>Criação: Nexo Design | Front-end: Guilherme Müller</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://guilhermemuller.com.br/blog/2011/12/16/ceabs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anolis Books</title>
		<link>http://guilhermemuller.com.br/blog/2011/12/16/anolis-books/</link>
		<comments>http://guilhermemuller.com.br/blog/2011/12/16/anolis-books/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 17:10:29 +0000</pubDate>
		<dc:creator>Guilherme Müller</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://guilhermemuller.com.br/blog/?p=708</guid>
		<description><![CDATA[Criação: Nexo Design &#124; Front-end e sistema: Guilherme Müller]]></description>
			<content:encoded><![CDATA[<p>Criação: Nexo Design | Front-end e sistema: Guilherme Müller</p>
]]></content:encoded>
			<wfw:commentRss>http://guilhermemuller.com.br/blog/2011/12/16/anolis-books/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Safesoft</title>
		<link>http://guilhermemuller.com.br/blog/2011/12/16/safesoft/</link>
		<comments>http://guilhermemuller.com.br/blog/2011/12/16/safesoft/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 17:05:54 +0000</pubDate>
		<dc:creator>Guilherme Müller</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://guilhermemuller.com.br/blog/?p=705</guid>
		<description><![CDATA[Criação: Área41 Design / Guilherme Müller &#124; Front-end e sistema: Guilherme Müller]]></description>
			<content:encoded><![CDATA[<p>Criação: Área41 Design / Guilherme Müller | Front-end e sistema: Guilherme Müller</p>
]]></content:encoded>
			<wfw:commentRss>http://guilhermemuller.com.br/blog/2011/12/16/safesoft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Satis Fudge</title>
		<link>http://guilhermemuller.com.br/blog/2011/12/16/satis-fudge/</link>
		<comments>http://guilhermemuller.com.br/blog/2011/12/16/satis-fudge/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 17:04:35 +0000</pubDate>
		<dc:creator>Guilherme Müller</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://guilhermemuller.com.br/blog/?p=703</guid>
		<description><![CDATA[Criação, front-end e programação: Guilherme Müller]]></description>
			<content:encoded><![CDATA[<p>Criação, front-end e programação: Guilherme Müller</p>
]]></content:encoded>
			<wfw:commentRss>http://guilhermemuller.com.br/blog/2011/12/16/satis-fudge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Berlim Ambientes</title>
		<link>http://guilhermemuller.com.br/blog/2011/12/16/berlim-ambientes/</link>
		<comments>http://guilhermemuller.com.br/blog/2011/12/16/berlim-ambientes/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 17:01:28 +0000</pubDate>
		<dc:creator>Guilherme Müller</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://guilhermemuller.com.br/blog/?p=698</guid>
		<description><![CDATA[Criação: Área41 Design &#124; Front-end e sistema: Guilherme Müller]]></description>
			<content:encoded><![CDATA[<p>Criação: Área41 Design | Front-end e sistema: Guilherme Müller</p>
]]></content:encoded>
			<wfw:commentRss>http://guilhermemuller.com.br/blog/2011/12/16/berlim-ambientes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2 Party</title>
		<link>http://guilhermemuller.com.br/blog/2011/12/16/2-party/</link>
		<comments>http://guilhermemuller.com.br/blog/2011/12/16/2-party/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 17:00:36 +0000</pubDate>
		<dc:creator>Guilherme Müller</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://guilhermemuller.com.br/blog/?p=696</guid>
		<description><![CDATA[Criação: Giovana Müller &#124; Front-end e sistema: Guilherme Müller]]></description>
			<content:encoded><![CDATA[<p>Criação: Giovana Müller | Front-end e sistema: Guilherme Müller</p>
]]></content:encoded>
			<wfw:commentRss>http://guilhermemuller.com.br/blog/2011/12/16/2-party/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lumicenter</title>
		<link>http://guilhermemuller.com.br/blog/2011/12/16/lumicenter/</link>
		<comments>http://guilhermemuller.com.br/blog/2011/12/16/lumicenter/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 16:59:36 +0000</pubDate>
		<dc:creator>Guilherme Müller</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://guilhermemuller.com.br/blog/?p=694</guid>
		<description><![CDATA[Criação: Nexo Design &#124; Front-end e sistema: Guilherme Müller]]></description>
			<content:encoded><![CDATA[<p>Criação: Nexo Design | Front-end e sistema: Guilherme Müller</p>
]]></content:encoded>
			<wfw:commentRss>http://guilhermemuller.com.br/blog/2011/12/16/lumicenter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Abalux</title>
		<link>http://guilhermemuller.com.br/blog/2011/12/16/abalux/</link>
		<comments>http://guilhermemuller.com.br/blog/2011/12/16/abalux/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 16:58:52 +0000</pubDate>
		<dc:creator>Guilherme Müller</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://guilhermemuller.com.br/blog/?p=692</guid>
		<description><![CDATA[Criação: Nexo Design &#124; Front-end e sistema: Guilherme Müller]]></description>
			<content:encoded><![CDATA[<p>Criação: Nexo Design | Front-end e sistema: Guilherme Müller</p>
]]></content:encoded>
			<wfw:commentRss>http://guilhermemuller.com.br/blog/2011/12/16/abalux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

