groups

name language licence
HTML5 : Structure par defaut + commentaires Other Other
HTML : plus d'infos sur la balise adress HTML Other
PHP : convertir des retours à la ligne en entité html
avec la fonction nl2br()
PHP Other
HTML : Formulaire de contact + verification inline avec validatious 2.0 HTML Other
JS/HTML/GOOGLE EARTH API : examples plus commentaires Other Other
HTML/CSS : une bonne methode pour center verticalement un block HTML Other
HTML : thead, tfoot, tbody HTML Other
HTML/CSS : centrer verticalement un texte dans un div HTML Other

< 1 2 3 4 5 6 >



language: Other
licence: Other

HTML5 : Structure par defaut + commentaires

options: view full snippetsend to code collector
<!doctype html> <!-- le doctype est le suivant il ne sert plus qu'a s'assurer que les navigateurs interpreteront la page en mode standard et non en mode quirks -->

<html lang="fr"> <!-- -->
<head>
	<meta charset="utf-8"/>

</head>
<body>

</body>
</html>
	
(Continues...)