« Font Awesome » : différence entre les versions
Apparence
(2 versions intermédiaires par le même utilisateur non affichées) | |||
Ligne 1 : | Ligne 1 : | ||
[[Category:Web]] | [[Category:Web]] | ||
= Liens = | |||
* [https://fontawesome.com/icons Font Awesome icons] | |||
= Utilisation = | |||
<kode lang='html'> | |||
<i class="fa fa-edit"></i> | |||
<i class="fa fa-spinner fa-spin"></i>Loading ... | |||
</kode> | |||
= Installation = | = Installation = | ||
== [https://fontawesome.com/how-to-use/on-the-web/setup/hosting-font-awesome-yourself Installation manuelle] == | == [https://fontawesome.com/how-to-use/on-the-web/setup/hosting-font-awesome-yourself Installation manuelle] == | ||
Ligne 13 : | Ligne 23 : | ||
@import url('font-awesome/css/all.min.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');
|