본문 바로가기

IT/css

CSS 아이콘 폰트

https://material.io/icons/


<head>

<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">

</head>


<body>

<i class="material-icons">search</i>

</body>



http://fontawesome.io/icons/


<head>

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">

</head>


<body>

<i class="fa fa-facebook-square" aria-hidden="true"></i>

<i class="fa fa-twitter-square" aria-hidden="true"></i>

<i class="fa fa-star" aria-hidden="true"></i>

</body>

'IT > css' 카테고리의 다른 글

html 공백 < > & " 표현  (0) 2017.07.26
정규식  (0) 2017.07.11
web font  (0) 2017.05.11