font-awesome - cdnjs.com - The best FOSS CDN for web

  1. Open your HTML file and add the following line in the head section to include the Font Awesome stylesheet from the cdnjs.com content delivery network:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
  1. Once the stylesheet is included, you can use Font Awesome icons in your web page by adding the appropriate HTML elements with the relevant classes. For example, to add a search icon, use the following code:
<i class="fas fa-search"></i>
  1. You can explore the Font Awesome documentation to find the full list of available icons and their corresponding classes. This will allow you to easily integrate various icons into your web page design.