I have a block of HTML code that includes a heading and two paragraphs:
<div class="inter">
<h4>Note</h4>
<p>To add/remove a dependent or to modify your spouse's insurer information, go to the My Life Events section and follow the instructions.</p>
<p>To modify your beneficiaries, please complete and sign the Beneficiary designation form and return it to your plan administrator.</p>
</div>
I would like the code above to be displayed in a specific way, as shown in the image at this link.
I attempted to use
div.inter>p,h4 { display: inline;}
, but I ran into an issue with creating a line break between the two paragraphs, as seen below.
Note: To add/remove a dependent or to modify your spouse's insurer information, go to the My Life Events section and follow the instructions. To modify your beneficiaries, please complete and sign the Beneficiary designation form and return it to your plan administrator.