Looking to improve the layout of my page with a title, header, and 3 links. Is there a way to have them displayed next to each other with some space in between? I've tried using tables but it didn't work as they ended up too close together. Open to suggestions on a better way to arrange them while keeping them side by side.
For example: Out Of Office--------Leave Application---------Extension List
Trying to make it look tidier and more visually appealing.
My current code snippet:
body {
background-image: url("burg.jpg");
}
<CENTER>
<h1> Alpine Motors Local Services </h1>
<HR>
<table border="0">
<td>
<h2><a href="http://172.16.1.9/vacation">*Set Out Of Office*</a></h2>
</td>
<td>
<h2><a href='leaveform/LeaveForm.php'>Leave Application*</a></h2>
</td>
<td>
<h2><a href='VW Ext List/index.php'>Extension List Directory*</a></h2>
</td>
</table>
<HR>
</CENTER>