Programming Tips - Bootstrap4: How do I use Fontawesome?

Date: 2018sep7 Update: 2019sep12 Product: Fontawesome Keywords: Bootstrap 4, css, style Q. Bootstrap4: How do I use Fontawesome? A. You need to drop in the .css file and a webfonts folder. The .css file references the webfonts folder so you html only needs to mention the .css. Your html
<link rel="stylesheet" href="css/fontawesome-all.min.css">
Your project needs these folders and files
css/fontawesome-all.min.css webfonts/*
To get an icon (for example the sun)
<span class='fa fa-sun'></span>