You should write because writing makes you a better person.

0%

在hexo中使用fontawesome

需要在文档末尾加上:

1
2
3
4
5
<head> 
<script defer src="https://use.fontawesome.com/releases/v5.0.13/js/all.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.13/js/v4-shims.js"></script>
</head>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css">

使用的时候采用html语言:

1
<i class="far fa-envelope"> </i>

图标可以在这个网站上查询:

图标库v5 - FontAwesome 字体图标中文Icon

[有一些图标似乎不能被正确加载,需要修改对应的html的代码格式:1. 后面补上</i>,2.可能要把far的r删掉。好处是图标种类更多]

图标库v4 - FontAwesome 字体图标中文Icon [建议使用]