It's a very common visual strategy to present data to users in label/value pairs. You see information 'cards' like this presented everywhere which present data points like:
Miles Per Gallon: 36 Engine Size: 2.8 liter
In some applications, these values may be editable in certain circumstances and not in others. A ton of work has been done on a11y and interaction concepts around forms, so you might imagine the following as being a valueable way to express things - you potentially gain a lot of subtle value in terms of how users interact with and understand the UI by using some markup like:
<label for="mpg">Miles per Gallon<label> <input id="mpg" readonly>