// So sieht die "Doctype" Beschreibung in einem HTML-Dokument nach HTML 4.0 Konvention aus.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
// So sieht die "Doctype" Beschreibung in einem XHTML-Dokument nach XHTML 1.0 Konvention aus.
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="de">
// So sieht die "Doctype" Beschreibung des HTML-Validators beim W3C aus.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
Änderung am 16.09.2001
Die "Doctype" Beschreibung für XHTML-Dokumente verlangt ab sofort eine Information
zum benutzten Schrift-/Schrifttyp. Die ../../Crashkurs/index.html Seite hat ab sofort als
"Doctype" die Beschreibung:
<?xml version="1.0" encoding="iso-8859-1" ?>
(--> Detected Character Encoding: iso-8859-1)
|