I am currently lets the user input these choices in a form, under each element I'd like to put a p tag under each element that stats something like this
Radio: Review/Change
Policy Number: 123545
Last Name: Smith
First Name: Bob
Comments: bob is nice.
here is my current inputs.
<div class ="radio">
<input type="radio" name="type" value="R" /> Review/Change<br/>
<input type="radio" name="type" value="N" />New Business <br/>
<input type="radio" name="type" value="H" />Hold/Trial <br/>
<input type="radio" name="type" value="B" /> Brokerage <br/>
</div>
<div class="information">
<p> Policy Number: <input id="polNum" name="polNum" type="text"/></p>
<p>Control Number:<input id="membNbr" name="membNbr" type="text"/></p>
<p>Last Name or Business Name: <input id="lastName" name="lastName" type="text"/></p>
<p>First Name:<input id="firstName" name="firstName" type="text"/></p>
<p>Comments:
<textarea name="comment" id="comment" cols="30" rows="2"></textarea></p>
</div>`