Hier werden die Unterschiede zwischen der gewählten und der aktuellen Version gezeigt.
start:info:08_diff:xhtml:dokument 07.09.2009 08:35 | start:info:08_diff:xhtml:dokument 23.10.2013 10:12 aktuell | ||
---|---|---|---|
Zeile 51: | Zeile 51: | ||
* Frameset((Transitional und Frameset DTDs schalten im Firefox & Mozilla Browser einen dritten Rendering-Modus ein, den sogenannten [[http://developer.mozilla.org/en/docs/Gecko%27s_Almost_Standards_Mode|"fast Standard"-Modus]].)):\\ | * Frameset((Transitional und Frameset DTDs schalten im Firefox & Mozilla Browser einen dritten Rendering-Modus ein, den sogenannten [[http://developer.mozilla.org/en/docs/Gecko%27s_Almost_Standards_Mode|"fast Standard"-Modus]].)):\\ | ||
%%<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">%% | %%<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">%% | ||
+ | |||
+ | ====== Grundgerüst zum Kopieren ====== | ||
+ | |||
+ | <code xml> | ||
+ | <!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" lang="de-de"> | ||
+ | <head> | ||
+ | <title>Grundgerüst</title> | ||
+ | <meta name="author" content="E. Alkan" /> | ||
+ | <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> | ||
+ | </head> | ||
+ | |||
+ | <body> | ||
+ | <!-- Hier kommt euer Inhalt hin --> | ||
+ | |||
+ | </body> | ||
+ | </html> | ||
+ | |||
+ | </code> | ||
+ |