Font Awesome-차트 아이콘
이 장에서는 Font Awesome Chart 아이콘의 사용법에 대해 설명합니다. 그것을 가정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 Awesome Chart 아이콘의 사용법과 결과를 보여줍니다. 위 프로그램의 <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> |