FontAwesome-チャートアイコン
この章では、Font AwesomeChartアイコンの使用法について説明します。と仮定するcustom 以下の例に示すように、サイズと色を定義したCSSクラス名です。
<html>
<head>
<link rel="stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css">
<style>
i.custom {font-size: 2em; color: gray;}
</style>
</head>
<body>
<i class = "fa fa-adjust custom"></i>
</body>
</html>
次の表は、Font AwesomeChartアイコンの使用法と結果を示しています。上記のプログラムの<body>タグを表に示されているコードに置き換えて、それぞれの出力を取得します-
使用法 | 結果 |
---|---|
<i class = "fa fa-area-chart custom"> </ i> | |
<i class = "fa fa-bar-chart custom"> </ i> | |
<i class = "fa fa-bar-chart-o custom"> </ i> | |
<i class = "fa fa-line-chart custom"> </ i> | |
<i class = "fa fa-pie-chart custom"> </ i> |