html`
<style>
.pre-labelled {
display: flex;
justify-content: space-between;
}
.pre-labelled::before {
content: attr(data-css-label);
}
</style>
<div style="width: 300px">
<div class="pre-labelled" data-css-label="Delivery from">KFC</div>
<div class="pre-labelled" data-css-label="Delivery to">Hugo</div>
<div class="pre-labelled" data-css-label="Website"><a href="https://codewithhugo.com">codewithhugo.com</a></div>
</div>`