I would like to create a horizontal card that will look like this:
How can I make it so the "LINK with Icon" divs are evenly spaced out within their own div container?
I tried using padding on .colum div {} to space them out but it won't.
This is what I have so far:
<body>
<div class="container">
<div clas="colum">
<div>
Github
</div>
<div>
Libguides:
</div>
<div>
Instagram:
</div>
</div>
<div class="image">
<img src="image.jpg" alt="cartoon image">
</div>
</div>
</body>