Utliser une police de caractères servie depuis une URL : la propriété CSS @font-face/* * téléchargement des polices */ @font-face font-family : ’Vegur’ ; src : url(’fonts/Vegur-Regular-webfont.woff’) format(’woff’) ; font-style : normal ;
@font-face font-family : ’VegurBold’ ; url(’fonts/Vegur-Bold-webfont.woff’) ; font-weight : bold ;
@font-face font-family : ’merriweather’ ; src : url(’merriweather-bold.woff2 ?#iefix’) format(’woff2’), url(’merriweather-bold.woff’) format(’woff’), (…)
Récupérer un projet en local depuis le serveur central : git clone https://git.spip.net/_plugins_/mon_plugin.git Ajouter les nouveaux fichiers au projet : git add . Commiter git commit -m ’ajout d’un fichier index’ Envoyer les commits sur le serveur central : git push Lister toutes les branches (…)