« Font Awesome » : différence entre les versions
Apparence
(4 versions intermédiaires par le même utilisateur non affichées) | |||
Ligne 1 : | Ligne 1 : | ||
[[Category:Web]] | [[Category:Web]] | ||
= [https://fontawesome.com/how-to-use/on-the-web/setup/hosting-font-awesome-yourself Installation] = | = 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 = | |||
== [https://fontawesome.com/how-to-use/on-the-web/setup/hosting-font-awesome-yourself Installation manuelle] == | |||
# Télécharger Font Awesome | # Télécharger Font Awesome | ||
# Copier le dossier {{boxx|/webfonts}} et {{boxx|/css/all.min.css}} dans {{boxx|wwwroot/css}} | # Copier le dossier {{boxx|/webfonts}} et {{boxx|/css/all.min.css}} dans {{boxx|wwwroot/css}} | ||
# Importer {{boxx|/css/all.min.css}} | # Importer {{boxx|/css/all.min.css}} | ||
<kode lang='html'> | <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');
|