1.使用cdn引入font_awesome图标库的css文件
例如:index.htm
<html>
<head>
<title>font_awesome test</title>
<link rel="stylesheet" href="https://cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.css"/>
</head>
<body>
<i class="fa fa-500px"></i>
</body>
</html>
或者先下载font_awesome图标库到本地,然后引入本地的font_awesome图标库
例如:index.html
<html>
<head>
<title>font_awesome test</title>
<link rel="stylesheet" href="font-awesome-4.7.0/css/font-awesome.min.css"/>
</head>
<body>
<i class="fa fa-500px"></i>
</body>
</html>