
Please log in to post a comment
Log in with GitHubCommunity feedback
- @dquinn089
Nice work! The only thing is that this is suppose to be a profile to consolidate social media links, but your code doesn't include an
a
tag to incorporate these links. You should usul
andli
instead of the div elements, as well as including ana
tag inside theli
elements.Instead of:
<div class="social_media"> <div class="social_media_account">GitHub</div> <div class="social_media_account">Frontend Mentor</div> <div class="social_media_account">LinkedIn</div> <div class="social_media_account">Twitter</div> <div class="social_media_account">Instagram</div> </div>
do:
<ul> <li><a href="#">GitHub</a></li> <li><a href="#">Frontend Mentor</a></li> <li><a href="#">LinkedIn</a></li> <li><a href="#">Twitter</a></li> <li><a href="#">Instagram</a></li> </ul>
Hope this helps, happy coding!
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord