When needing to display information in the format below:
Reason : reason number 1
reason number 2
reason number 3
Code : code number
Remarks : remark
In this scenario, Reason, Code, and Remarks serve as headings enclosed in <strong>
tags, while the values - reason number 1, reason number 2, code number, and remark - are displayed as content.
If an attempt is made to use a <p> tag for the heading, the value automatically moves to a new line. The question arises of how to display them as key-value pairs on a single line without utilizing float, which would be preferable in this case.