I am struggling to figure out how to position text in the center left of a box that is located in the top right corner of my HTML template.
<table class="label">
<tr>
<td class="sign">F</td>
<td class="holder">
<div class="box">
FIRST-CLASS<br />
ePostage<br />
</div>
InternetBase <!-- Text to be added next to the box -->
</td>
</tr>
<tr>
<td colspan="2" class="title">FIRST-CLASS</td>
</tr>
<tr>
<td colspan="2" class="row">
<p class="sender">
{{fromName}}
<br />
{{refNumber}} <br />
</p>
<p class="meta">
Email Date: {{labelDate}}
<br />
Memory: {{emailWeight}} kb
</p>
</td>
</tr>
<tr>
<td colspan="2" class="receiver">
<p class="to" style="padding-top: 10px">
{{toName}}
<br />
{{toRefNumber}}<br />
</p>
</td>
</tr>
<tr>
<td colspan="2" class="barcode">
<p class="note">TRACKING # EP</p>
<img src="data:image/png;base64, {{barImage}}" alt="" class="img" />
</td>
</tr>
<tr>
<td colspan="2" class="footer"></td>
</tr>
</table>
<style>
/* CSS Styles */
</style>
I simply want to include the text InternetBase directly beside the box in the top right corner.
https://i.sstatic.net/RNJJv.jpg
How can I achieve this exactly?