groups

name language licence
CSS : CSS de base CSS Other
CSS : Utilisation de @font-face (CSS3) CSS Other
CSS : hack pseudoclass sur les liens CSS Other
CSS : notes sur class css CSS Other
CSS : overflow, comment n'avoir qu'une seule barre de scroll CSS Other
CSS : pseudo class :last-child CSS Other
CSS : Utilisation de @font-face (CSS3) CSS Other
CSS : hack pseudoclass sur les liens CSS Other

< 1 2 3 >



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...)