基本语法
示例:
下载,原始官网:http://fontawesome.io ;极风游科技支持:http://fontawesome.dashgame.com
复制整个font-awesome文件夹到主题中,在<head>中引用font-awesome.min.css:
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<a href="#" class="fa fa-trash-o fa-1g"></a>
其中:
<!DOCTYPE html> <html> <head> <title>font icons test</title> <meta charset="ut-8" /> <link rel="stylesheet" type="text/css" href="font-awesome-4.0.3/css/font-awesome.css" /> <style type="text/css" > .danger{ display: inline-block; width: 80px; height: 30px; text-align: center; background: brown; border-radius: 5px; font-size: 14px; line-height: 30px; text-decoration: none; color: white; } </style> </head> <body> <!--用法一--> <a class="danger" href="#"><i class="fa fa-trash-o fa-lg"></i>Delete</a> <!--用法二--> <i class="fa fa-trash-o fa-2x"></i> Delete <i class="fa fa-trash-o fa-3x"></i> Delete <i class="fa fa-trash-o fa-4x"></i> Delete <!--用法三--> <a href="#" class="fa fa-trash-o fa-5x"></a> </body> </html>