How can I use the fa-heart-o
icon in Fontawesome 5 free version if it's not working? Can I have both version 4.7 and 5.1 of Fontawesome on the same page? It seems to work in version 4.7.
This is the code I'm using:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<li>
<i class="fas fa-heart-o"></i>
</li>
<script src='https://kit.fontawesome.com/a076d05399.js' crossorigin='anonymous'></script>
</body>
</html>