Skip to content

Instantly share code, notes, and snippets.

View georgemendonca's full-sized avatar

George Mendonça georgemendonca

View GitHub Profile
<?php
echo "Olá! Seja bem vindo ao tutorial Introdução ao
Desenvolvimento de Aplicações Web Dinâmicas
- Capítulo 1 ";
?>
@georgemendonca
georgemendonca / primeiro-documento.html
Created October 19, 2010 23:11
Meu primeiro documento HTML
<html>
<head>
<title>O meu primeiro documento HTML</title>
</head >
<body>
<p>HTML é uma linguagem de marcação simples!</p>
</body>
</html>
@georgemendonca
georgemendonca / lei-formacao-tag-html.html
Created October 20, 2010 00:14
Lei de formação de uma tag HTML
<nomeDaTag atributo="valor">
@georgemendonca
georgemendonca / abertura-fechamento-tag-html.html
Created October 20, 2010 00:17
Abertura e fechamento de uma tag HTML
<!-- Tags de abertura e fechamento -->
<tag1></tag1>
<!-- Tag sem fechamento -->
<tag2>
<!-- Forma correta de implementar uma tag sem fechamento -->
<tag3 />
@georgemendonca
georgemendonca / namespace para XHTML
Created October 27, 2010 01:18
namespace para XHTML
http://www.w3.org/1999/xhtml
@georgemendonca
georgemendonca / exemplo-elemento-raiz.html
Created October 27, 2010 01:21
Um exemplo de elemento raiz
<html xmlns="http://www.w3.org/1999/xhtml">
@georgemendonca
georgemendonca / xhtml-1-0-strict.html
Created October 27, 2010 02:12
DTD XHTML 1.0 Strict
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
@georgemendonca
georgemendonca / xhtml-1-0-transational.html
Created October 27, 2010 02:13
DTD XHTML 1.0 Transational
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
@georgemendonca
georgemendonca / xhtml-1-0-frameset.html
Created October 27, 2010 02:14
DTD XHTML 1.0 Frameset
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
@georgemendonca
georgemendonca / exemplo-xhtml-1-0-strict.html
Created October 27, 2010 02:34
Apresentando uma estrutura básica de uma DTD XHTML 1.0 Strict
<!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>
<meta http-equiv="Content-Type"
content="text/html; charset=utf-8" />
<title>Aprendendo HTML</title>
</head>
<body>
<p>O HTML é fundamental no desenvolvimento Web!</p>