Font Awesome Error | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Font Awesome Error

i was searching for a “chevron” in Font Awesome (Version 6) i tried this: <i class="fa-regular fa-chevron-right"></i> But it only shows a circled Question Mark and an Exclamation Mark. I’m using a latest Fa Kit and Fa Version 6.4.0, here’s what i used: <script src="https://kit.fontawesome.com/PRIVATE-CLAIM" crossorigin="anonymous"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">

30th Jun 2023, 1:01 PM
Octocat
Octocat - avatar
3 Answers
+ 2
Octocat all you need is <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> <i class="fa fa-chevron-right" aria-hidden="true"></i> And the chevron works without errors
1st Jul 2023, 12:01 AM
BroFar
BroFar - avatar
+ 1
To be honest BroFar , i don’t think the version change. But as always, Thank you!! - Octocat
1st Jul 2023, 1:11 AM
Octocat
Octocat - avatar
0
Octocat 6.4.0 is <i class="fa-solid fa-chevron-right"></i> Where as early versions is <i class="fa fa-chevron-right" aria-hidden="true">
1st Jul 2023, 2:49 AM
BroFar
BroFar - avatar