@perfidev
Posted
Very well, my friend! It looks great! Here are some suggestions:
- I would add "href" to the <a> tags because they are links and for best practices.
- I would include a <nav> tag with a <ul> list and place the <a> links inside <li> tags, as it adds semantics since you are navigating through the links.
- I would set the body as display: flex to center your <div>.
<div class="box-botoes">
<nav>
<ul>
<li><a href="https://github.com">Github</a></li>
<li><a href="https://frontendmentor.io">Frontend Mentor</a></li>
<li><a href="https://linkedin.com">LinkedIn</a></li>
<li><a href="https://twitter.com">Twitter</a></li>
<li><a href="https://instagram.com">Instagram</a></li>
</ul>
</nav>
</div>
Marked as helpful
@samukagomesdv
Posted
Thanks for the sugestion! @raphaelperfi