« Font Awesome » : différence entre les versions
De Banane Atomic
Aller à la navigationAller à la recherche
(Page créée avec « Category:Web = [https://fontawesome.com/icons Font Awesome] = <kode lang='html'> <a href="#" class="btn btn-sm btn-primary"> <i class="fa fa-edit"></i> </a> <div... ») |
(→Liens) |
||
(7 versions intermédiaires par le même utilisateur non affichées) | |||
Ligne 1 : | Ligne 1 : | ||
[[Category:Web]] | [[Category:Web]] | ||
= [https://fontawesome.com/icons Font Awesome] = | = Liens = | ||
* [https://fontawesome.com/icons Font Awesome icons] | |||
= Utilisation = | |||
<kode lang='html'> | <kode lang='html'> | ||
<i class="fa fa-edit"></i> | |||
<i class="fa fa-spinner fa-spin"></i>Loading ... | |||
</kode> | |||
</ | |||
= Installation = | |||
== [https://fontawesome.com/how-to-use/on-the-web/setup/hosting-font-awesome-yourself Installation manuelle] == | |||
# Télécharger Font Awesome | |||
# Copier le dossier {{boxx|/webfonts}} et {{boxx|/css/all.min.css}} dans {{boxx|wwwroot/css}} | |||
# Importer {{boxx|/css/all.min.css}} | |||
<kode lang='html'> | |||
<head> | |||
<link href="font-awesome/css/all.min.css" rel="stylesheet"> | |||
</head> | |||
</kode> | |||
<kode lang='css'> | |||
@import url('font-awesome/css/all.min.css'); | |||
</kode> | </kode> | ||
= Other Icon Fonts = | = Other Icon Fonts = |
Dernière version du 24 septembre 2020 à 19:42
Liens
Utilisation
<i class="fa fa-edit"></i> <i class="fa fa-spinner fa-spin"></i>Loading ... |
Installation
Installation manuelle
- Télécharger Font Awesome
- Copier le dossier /webfonts et /css/all.min.css dans wwwroot/css
- Importer /css/all.min.css
<head> <link href="font-awesome/css/all.min.css" rel="stylesheet"> </head> |
@import url('font-awesome/css/all.min.css'); |