Font Awesome 적용 방법

[HTML] FontAwesome 적용 시키기
Feb 21, 2024
Font Awesome 적용 방법

Library 설치

위 사이트에서 코드 복사하기
코드를 아래와 같이 입력 하여 적용
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"> </head>
<!DOCTYPE html> <html> <head> <title>Font Awesome Icons</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"> </head> <body> <i class="fas fa-heart"></i> <i class="far fa-heart"></i> <i class="fa fa-heart"></i> </body> </html>

Icon 찾는 법

 
Share article
RSSPowered by inblog