font awesome 4.5 icons code example
Example 1: font awesome icons
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
Example 2: fontawesome 4.7 icon
<i class="fa fa-facebook" aria-hidden="true"></i>
Example 3: fa icons
<script src='https://kit.fontawesome.com/a076d05399.js'></script>
Example 4: release icon font awesome
<i class="fa fa-rocket" aria-hidden="true"></i>
Example 5: font awesome icon
<head>
<link href="/your-path-to-fontawesome/css/all.css" rel="stylesheet">
</head>
<body>
<i class="fas fa-user"></i>
<i class="far fa-user"></i>
<i class="fal fa-user"></i>
<i class="fab fa-github-square"></i>
</body>