How can I display a person's name and the date on the same line with the name aligned left and the date aligned right?
<h2>Firstname Surname</h2><text align="right"><h2>Date</h2>
The code above results in both elements being displayed on separate lines. It seems like using two different h2 tags is causing this issue. I have tried combining them into one h2 tag:
<h2>Firstname Surname <text align="right"> Date</h2>
However, this displays all text on the same line without proper alignment.