font awesome free icont code example
Example 1: download font awesome icons
View the icons here:
https://fontawesome.com/icons?d=gallery
Download SVG files here:
https://github.com/FortAwesome/Font-Awesome/tree/master/svgs
Example 2: 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>