groups

name language licence
HTML/W3C : validation et erreurs à ne pas commettre HTML Other
HTML5 : Structure par defaut + commentaires HTML Other
SPIP : Attention à l'instruction INSERT_HEAD Other Other
SQL : ajouter une clé primaire multicolonne Other Other
TS : Conditions tester id de la page courante Other Other
TS : condition par treeLevel Other Other
TS : typoscript mega exemple : TMENU, MULTILANGUE, TEXT, CONDITIONS , ATTRIBUT TITLE, FIL D'ARIANE, Other Other
CSS : Utilisation de @font-face (CSS3) CSS Other

< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 >



language: CSS
licence: Other

CSS : Utilisation de @font-face (CSS3)

options: view full snippetsend to code collector
@font-face {
	font-family: Bickham;
	src: url('times_new_yorker.ttf');
}
		
body{
	
	background: #336688;	
	font-family: Bickham;
	font-size: 4em;
	color: #990044;
	text-shadow: #333 2px 2px 1px;
}
	
(Continues...)