Are the icons in built in the font awesome library of css? How do we get to use them | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Are the icons in built in the font awesome library of css? How do we get to use them

9th May 2017, 9:54 AM
prakhar dixit
prakhar dixit - avatar
2 Answers
+ 1
1.You can get the access to them by adding external link in your head section: <!-- Font Awesome --> <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> For using them you must add this tag with attributes wherever you want: <i class="fa THE_ICON_NAME"></i> The icon names are in the font awesome webpage, in this section: http://fontawesome.io/icons/ 2.Or you can simply download it in your computer. But no one recommends to do this.
9th May 2017, 10:18 AM
Ani Naslyan
Ani Naslyan - avatar
0
icons are inside fa font file
9th May 2017, 9:59 AM
Yaroslav Pieskov
Yaroslav Pieskov - avatar