Answers for "font awesome icon"

2

font awesome icons

<i class="fa fa-facebook-square" aria-hidden="true"></i>
Posted by: Guest on June-03-2020
2

fa icons

<script src='https://kit.fontawesome.com/a076d05399.js'></script>
Posted by: Guest on January-28-2021
-1

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>
Posted by: Guest on October-29-2020

Browse Popular Code Answers by Language