Font Awesomecss
fa是什麼?html
圖標字體庫和CSS框架框架
怎麼用?字體
<linkspa
rel="stylesheet" href="https://cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.css">3d
有哪些可用?code
範例?cdn
<!DOCTYPE html>htm
<html>blog
<head>
<title>Font Awesome 圖標</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.css">
</head>
<body>
<h1>fa fa-address-card-o</h1>
<i class="fa fa-address-card-o"></i>
<i class="fa fa-address-card-o" style="font-size:24px"></i>
<i class="fa fa-address-card-o" style="font-size:36px"></i>
<i class="fa fa-address-card-o" style="font-size:48px;color:red"></i>
<br>
<p>按鈕中使用:</p>
<button style="font-size:24px">
按鈕
<i class="fa fa-address-card-o"></i>
</button>
<p>Unicode:</p>
<i style="font-size:24px" class="fa"></i>
</body>
</html>
參考:
http://www.runoob.com/font-awesome/fontawesome-tutorial.html
http://www.runoob.com/font-awesome/fontawesome-reference.html
;