아이콘

Font Awesome 5 Icons

The Font Awesome Icons website is https://fontawesome.com/v5/search?m=free

예제

.fas .fa-building
.far .fa-building
.fab .fa-html5

<i class="fas fa-building"></i>
<i class="far fa-building"></i>
<i class="fab fa-html5"></i>

위 예제와 같이 <i> 태그 클래스에 아이콘명을 넣어줍니다. <i class="fa* fa-아이콘명"></i>

Glyphicon Icons

Bootrtap has included 200 Glyphicons icons as its default icons

The offecial Glyphicons Icons website is http://glyphicons.com


예제 .glyphicon .glyphicon-bell

<span class="glyphicon glyphicon-bell"></span>

위 예제와 같이 <span> 태그 클래스에 아이콘명을 넣어줍니다. <span class="glyphicon glyphicon-아이콘명"></span>