groups

Link to this snippet:


Download to Code Collector

language: CSS
licence: Other

CSS : Utilisation de @font-face (CSS3)

options: send to code collectorview all pierre alexandre payet's snippets
@font-face {
	font-family: Bickham;
	src: url('times_new_yorker.ttf');
}
		
body{
	
	background: #336688;	
	font-family: Bickham, serif; /*ATTENTION la propriété font-family doit toujours faire reference également à une famille par defaut comme : sans-serif, serif ou encore monospace*/
	font-size: 4em;
	color: #990044;
	text-shadow: #333 2px 2px 1px;
}