<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="iconfont/iconfont.css">
<style>
p::before{
content: ‘\e603‘;
font-family: iconfont;
font-size: 100px;
}
</style>
<!--
1.https://www.iconfont.cn
2.登录(使用微博)
3.选择你想要的图标
4.将选中的图标添加到项目
5.下载到本地
...
-->
</head>
<body>
<!-- 通过实体-->
<span class="iconfont" style="font-size: 100px;"></span>
<span class="iconfont" style="font-size: 100px;"></span>
<!-- 通过类-->
<span class="iconfont icon-ganlaji
" style="font-size: 100px"></span>
<!--通过伪类-->
<p>HELLO</p>
</body>
</html>