CSS 아이콘
아이콘 추가 방법
HTML 페이지에 아이콘을 추가하는 가장 간단한 방법은 Font Awesome과 같은 아이콘 라이브러리를 사용하는 것입니다.
지정된 아이콘 클래스의 이름을 인라인 HTML 요소(예: <i>
또는 <span>
)에 추가합니다.
아래 아이콘 라이브러리의 모든 아이콘은 CSS(크기, 색상, 그림자 등)로 사용자 지정할 수 있는 확장 가능한 벡터입니다.
Font Awesome 아이콘
Font Awesome 아이콘을 사용하려면 fontawesome.com으로 이동하여 로그인한 후 HTML 페이지의 <head>
섹션에서 추가할 코드를 얻으십시오.
<script src="https://kit.fontawesome.com/yourcode.js" crossorigin="anonymous"></script>
Note: 다운로드 또는 설치가 필요하지 않습니다!
예제 1
<!DOCTYPE html>
<html>
<head>
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
</head>
<body>
<i class="fas fa-cloud"></i>
<i class="fas fa-heart"></i>
<i class="fas fa-car"></i>
<i class="fas fa-file"></i>
<i class="fas fa-bars"></i>
</body>
</html>
Bootstrap 아이콘
Bootstrap 글리피콘을 사용하려면 HTML 페이지의 <head>
섹션 안에 다음 행을 추가하십시오.
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
Note: 다운로드 또는 설치가 필요하지 않습니다!
예제 2
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body>
<i class="glyphicon glyphicon-cloud"></i>
<i class="glyphicon glyphicon-remove"></i>
<i class="glyphicon glyphicon-user"></i>
<i class="glyphicon glyphicon-envelope"></i>
<i class="glyphicon glyphicon-thumbs-up"></i>
</body>
</html>
Google 아이콘
Google 아이콘을 사용하려면 HTML 페이지의 <head>
섹션에 다음 행을 추가하십시오.
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
Note: 다운로드 또는 설치가 필요하지 않습니다!
예제 3
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>
<body>
<i class="material-icons">cloud</i>
<i class="material-icons">favorite</i>
<i class="material-icons">attachment</i>
<i class="material-icons">computer</i>
<i class="material-icons">traffic</i>
</body>
</html>