How to make three buttons in one line span the entire page?
I want to make the three buttons span the entire page equally, does anybody know how? <div class="mainNavigation"> <table> <tr> <td> <form action="webPages/index.html"> <input type="submit" value="Purchase Used Cubes" /> </form> </td> <td> <form action="webPages/index.html"> <input type="submit" value="Purchase Cube Products" /> </form> </td> <td> <form action="webPages/index.html"> <input type="submit" value="Purchase Cube Repairs" /> </form> </td> </tr> </table>… Read More How to make three buttons in one line span the entire page?