I have three image buttons on my site that i'd like to align, side-by-side in the center at the top of my site. Here's the code.
the images are within a div, but they aren't really aligning at all.
i've tried margin: auto and display: block but i'm a noob here, so i'm not sure what else to do.
.buttons {
height: 100px;
width: 612px;
margin: auto auto;
display: block;
}
<div class="buttons">
<a href="http://apophis.neocities.org"><img src="HOME.png" class="HOME" title="HOME" alt="HOME"></a>
<a href=""><img src="INDEX.png" class="INDEX" title="INDEX" alt="INDEX"></a>
<a href="http://users3.smartgb.com/g/g.php?a=s&i=g36-29888-d9"><img src="GUESTBOOK.png" class="GUESTBOOK" title="GUESTBOOK" alt="GUESTBOOK"></a>
</div>