@Finney06Submitted over 2 years ago
Any suggestion on improving my code with HTML and CSS best practice.
Any suggestion on improving my code with HTML and CSS best practice.
I would push your footer down with a margin-top, then make your footer a flexbox and put all three of your icons in a div and push the div to the end. Here's a rough idea.
<footer class='flexbox justify-content-end margin-top:til-it-looks-good'> (pushes all the icons over) <div class='flexbox justify-content-space-between'> (spaces icons out with flexbox) <icon><icon><icon> </div> </footer>Something like that. I used the class names to kind of explain the CSS involved.