how to use font awesome icons in HTML

hi I cant use font awesome icons and I don't know what is the problem please explain to me how I can use font awesome icons in this version . step by step yes there is some topic like this but I couldn't figure out answer

3 Answers

First you have to write this in the head

<link rel="stylesheet" href=""> 

Then whenever you want to use a font awesome, Just copy its HTML code and paste it where you want it to be. for example:

<i></i> 

First you should add the required stylesheet.

If you are using Font Awasome 4:

Add this stylesheet before your body tag.

<link rel="stylesheet" href=""> 

Where to use it:

Use it inside body tag.

Eg: <i></i>

If you are using other versions of Font Awasome view their docs, just search font awasome docs of the individual version.

You can use CDNs to link font-awesome, but the docs recommends to download and use kits. You can download it here:

For more details you should look into its Docs:

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like