I'm having trouble getting my fontawesome icons to display in HTML. I've included the appropriate kits script link (
<script src="https://kit.fontawesome.com/32b2571194.js" crossorigin="anonymous"></script>
) in the header and after the body tag, but all I see is a square instead of the icon. Can someone help me understand why this might be happening?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8>
<meta http-equiv="X-UA-Compatible" content="IE-edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Currency Website Template</title>
<link rel="stylesheet" href="/scss/style.css">
<script src="https://kit.fontawesome.com/32b2571194.js" crossorigin="anonymous"></script>
</head>
<body>
Light: <i class="fa-light fa-magnifying-glass-dollar"></i><br/>
Solid works:
<i class="fa-solid fa-magnifying-glass-dollar"></i>
</body></html>`;