@amgallo1213Submitted about 1 year ago
I'm still struggling with making my code responsive and am looking for a good resource that explains how to do it. Thank you!
I'm still struggling with making my code responsive and am looking for a good resource that explains how to do it. Thank you!
Hi , I did the same project and for the newbies level I must admit it's a little bit difficult.
After saw your github code, they are some points to improve or add :
<!-- Github code --> <div id="socials"> <div class="socials"><i class="fa-brands fa-facebook-f"></i></div> <div class="socials"><i class="fa-brands fa-twitter"></i></div> <div class="socials"><i class="fa-brands fa-instagram"></i></div> </div> <!-- Better --> <footer> <ul> <li><i class="fa-brands fa-facebook-f"></i></li> <li><i class="fa-brands fa-twitter"></i></li> <li><i class="fa-brands fa-instagram"></li> </ul> </footer>
Keep going good luck :)
Maybe you should import images folder into your github repository :)