<html>
<head>
<style>
* {
box-sizing: border-box;
}
.column {
float: left;
width: 50%;
padding: 10px;
text-align:center;
}
.row:after {
content: "";
display: table;
clear: both;
}
a{
text-decoration: none;
}
</style>
</head>
<body>
<div class="row">
<div class="column" >
<h2>Reserve from Dun Laogharie</h2>
<a href="#">Reservation</a>
</div>
<div class="column">
<h2>Reserve from Kimmage</h2>
<a href="#">Reservation</a>
</div>
</div>
</body>
</html>