font awesome 4 icon code example
Example 1: fontawesome 4.7 icon
<i class="fa fa-facebook" aria-hidden="true"></i>
Example 2: fa icons
<script src='https://kit.fontawesome.com/a076d05399.js'></script>
Example 3: font awesome icon
<head>
<link href="/your-path-to-fontawesome/css/all.css" rel="stylesheet"> <!--load all styles -->
</head>
<body>
<i class="fas fa-user"></i> <!-- uses solid style -->
<i class="far fa-user"></i> <!-- uses regular style -->
<i class="fal fa-user"></i> <!-- uses light style -->
<!--brand icon-->
<i class="fab fa-github-square"></i> <!-- uses brands style -->
</body>