Answers for "add font awesome icon"

7

how to import font awesome in html

<!-- Add this in your <head> tag -->
<link
      rel="stylesheet"
      href="https://use.fontawesome.com/releases/v5.13.0/css/all.css"
      integrity="sha384-Bfad6CLCknfcloXFOyFnlgtENryhrpZCe29RTifKEixXQZ38WheV+i/6YWSzkz3V"
      crossorigin="anonymous"
    />
Posted by: Guest on May-25-2020
0

send icon font awesome

<i class="fa fa-paper-plane" aria-hidden="true"></i>
Posted by: Guest on September-24-2020
2

add icon font awesome

<i class="fa fa-plus" aria-hidden="true"></i>
Posted by: Guest on June-03-2020
1

plus icon using font awesome

//Add it at in head
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
// Add it where u want to add icons
<i class="fa fa-plus"></i>
// u can also look at font awesome cheatsheet for reference.It will be helpful.
Posted by: Guest on September-30-2020

Browse Popular Code Answers by Language