skip to Main Content

From my understanding, all Font Awesome icons should work with linking this bootstrap stylesheet. But, I just got that one .fa fa-deskto to work, others do not display, the second one for example is:
https://fontawesome.com/icons/bath?f=classic&s=solid

Both icons are also free, but it isn’t working.

Sandbox

<head>
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</head>

<body>
  <div>
    <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" />
    <div className="icon">
      <i class="fa fa-desktop"></i>
      <i class="fa-solid fa-bath"></i>
    </div>
  </div>
</body>
Back To Top
Search