how to include font awesome in html?..already downloaded, i saved it in the desktop folder, named "webpg"... | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

how to include font awesome in html?..already downloaded, i saved it in the desktop folder, named "webpg"...

i searched on google, but i didn't understand...

16th Jun 2017, 9:42 PM
Kelvine De Danielo
Kelvine De Danielo - avatar
1 Answer
+ 8
Save that folder in the same folder of your project (index.html) and link it like a normal CSS file, should be something like: <link rel "stylesheet" href ="css/font-awesome.css"> You can also use the CDN, adding this in your <head> tag and without any installation, but with an internet connection required: <link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css'> Some references: Video Tutorial - https://youtu.be/CsUVjcppTuk Official docs - http://fontawesome.io/get-started/
16th Jun 2017, 10:55 PM
Maz
Maz - avatar