Skip to content

Instantly share code, notes, and snippets.

View georgemendonca's full-sized avatar

George Mendonça georgemendonca

View GitHub Profile
@georgemendonca
georgemendonca / declaracao-xml-xhtml.html
Created November 2, 2010 04:37
Declaração XML em uma DTD XHTML 1.0 Strict
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Aprendendo HTML</title>
</head>
<body>
<p>O HTML é fundamental no desenvolvimento Web!</p>
</body>
@georgemendonca
georgemendonca / elemento-raiz.html
Created November 6, 2010 19:46
Elemento <html>
<html>
... Elementos internos ...
</html>
@georgemendonca
georgemendonca / head.html
Created November 6, 2010 19:50
Elemento <head>
<html>
<head>
<title>Título do Documento</title>
</head>
<body>
Conteúdo...
</body>
@georgemendonca
georgemendonca / body.html
Created November 6, 2010 20:09
O elemento <body>
<html>
<head>
<title>Título</title>
</head>
<body>
Conteúdo da página:
Elementos de textos, links, imagens, scripts, etc.
</body>
@georgemendonca
georgemendonca / dtd-html-4-1-srtict.html
Created November 6, 2010 21:14
DTD HTML 4.1 Strict
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
@georgemendonca
georgemendonca / dtd-html-4-1-transitional.html
Created November 6, 2010 21:15
DTD HTML 4.1 Transitional
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
@georgemendonca
georgemendonca / dtd-html-4-1-frameset.html
Created November 6, 2010 21:18
DTD HTML 4.1 Frameset
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
@georgemendonca
georgemendonca / comentario.html
Created November 11, 2010 03:03
Comentários HTML
<!--
Este é um comentário em HTML, quando
o interpretador do browser encontra
estas Tags ele não interpreta o conteúdo
existente.
Pode adicionar qualquer informação
relevante ao seu projeto.
-->
@georgemendonca
georgemendonca / quebra-linha.html
Created November 11, 2010 03:08
Quebra de linha em textos.
<html>
<head>
<title>Quebra de linha.</title>
</head>
<body>
Utilizando a tag <br /> para quebra de linha.
</body>
</html>
@georgemendonca
georgemendonca / cabecalhos.html
Created November 11, 2010 03:10
Cabeçalhos de texto em HTML
<html>
<head>
<title>Cabeçalhos HTML</title>
</head>
<body>
<h1>Cabeçalhos HTML</h1>
<h2>Cabeçalhos HTML</h2>
<h3>Cabeçalhos HTML</h3>
<h4>Cabeçalhos HTML</h4>
<h5>Cabeçalhos HTML</h5>