Définition des Tags « codes » HTML
Apprendre le html , JavaScript, PHP, CSS, et ASP ...
<!DOCTYPE>
C'est une Declaration sera dans les premiere ligne de la page meme avant le HTML tag. example:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
La declaration: <!doctype ..... >
Definition:
La declaration Doctype doit etre dans la premiere ligne d'un document Html meme avant le code principale du HTML .. <html>
Cette declaration n'est pas un html tag, c'est une instruction pour le Navigateur en lui donnant la version du Markup language de la page ou elle est redige.
Doctype vient du mot Document type Definition (DTD) Qui sert a aider le navigateur a presente la page HTML. (Hyper Text Markup Language)
example de declaration:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-US" xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
<html>
<head> <title> Le titre de votre document.</title> </head>
<body>
le contenu de votre site web (document)
</body>
Doctypes Recommendations par le site officiel de W3C (en Anglais)
HTML 4.01 Strict
This DTD contains all HTML elements and attributes, but does not include presentational or deprecated elements (like font). Framesets are not allowed.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
HTML 4.01 Transitional
This DTD contains all HTML elements and attributes, including presentational and deprecated elements (like font). Framesets are not allowed.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
HTML 4.01 Frameset
This DTD is equal to HTML 4.01 Transitional, but allows the use of frameset content.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
XHTML 1.0 Strict
This DTD contains all HTML elements and attributes, but does not include presentational or deprecated elements (like font). Framesets are not allowed. The markup must also be written as well-formed XML.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
XHTML 1.0 Transitional
This DTD contains all HTML elements and attributes, including presentational and deprecated elements (like font). Framesets are not allowed. The markup must also be written as well-formed XML.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
XHTML 1.0 Frameset
This DTD is equal to XHTML 1.0 Transitional, but allows the use of frameset content.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
XHTML 1.1
This DTD is equal to XHTML 1.0 Strict, but allows you to add modules (for example to provide ruby support for East-Asian languages).
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

2009 Copyright all rights reserved
Insérer une image
Insérer SWF flash
Insérer media player
Inline frame Iframe
Insérer flv flash files
HTML Elements
HTML Formatting
HTML Attributs
HTML Couleurs
HTML Liens
HTML Images
HTML Meta Tags
HTML Commentaire
HTML Forms
HTML Tables
HTML Image Carte
HTML Frames
HTML Entities
HTML Layouts
HTML Styles
HTML Scripts
HTML Templates
Website Hosting