My webpage has two headers positioned as 'CompanyName' on the top left and 'Date' at the top middle but I am struggling to align them horizontally. I attempted to enclose them inside a div element, however, this did not work. Can someone provide me with a solution to fix this issue?
<div>
<h1>CompanyName</h1>
<h1 style="text-align:center">Date @Html.DisplayFor(model => model.TodaysDate)</h1>
</div>