- Edit the
index.html
file and change the links/icons.
<a href="https://github.com" class="hex-icon" target="none">
<i class="fa-brands fa-github"></i>
</a>
- More icons? A different layout? Modify the number of rows and columns in the
style.css
file.
.grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-template-rows: repeat(2, 1fr);
}