Having some trouble with using Fontawesome 5 icons, my kit is from version 4 so I'm not sure if that's the issue. Any suggestions on how to fix this?
<!DOCTYPE html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="chasebiscamp.css">
<script src="https://kit.fontawesome.com/68e7b84e8d.js" crossorigin="anonymous"></script>
<title>CB</title>
</head>
<body>
<nav>
<button class="nav" id="profile_tab">Profile</button>
<button class="nav" id="chat_tab">Chat</button>
<button class="nav" id="friends_tab">Friends</button>
<button class="nav" id="gallery_tab">Gallery</button>
<button class="nav" id="settings_tab">Settings</button>
</nav>
<p><i class="fa-solid fa-user" style="color: #000000;"></i></p>
<div class="content_body" id="profile">
<h1></h1>
</div>
</body>
</html>
Hopefully that clarifies things!