| 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 |
| FLASH : notes sur flash page flip | Other | Other |
| HTML : Ajouter un favicon sur un site | HTML | 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 snippet • send to code collector
@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;
}



library
html (48)