Skip to content

Instantly share code, notes, and snippets.

@georgemendonca
Created October 27, 2010 02:34
Show Gist options
  • Select an option

  • Save georgemendonca/648305 to your computer and use it in GitHub Desktop.

Select an option

Save georgemendonca/648305 to your computer and use it in GitHub Desktop.
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>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment