I'm a beginner and I've been following various tutorials to achieve my goal. The main objective is to create animated social icons in the footer. However, I have encountered an issue where the social icons from FontAwesome are not working.
When I place them within <ul> tags, they do not display properly, but when placed outside, they appear fine.
How can I troubleshoot this problem to make sure the icons show up correctly when placed inside <ul>?
This is the provided code:
HTML:<!DOCTYPE html>
<html>
...
... (content omitted for brevity)
...
</html>
This is CSS:
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Quicksand', sans-serif;
}
body{
height: 100vh;
width: 100%;
}
... (styling rules continued for brevity) ...