set the icon html code example
Example 1: how to set text for label in jquery
BY LOVE
$("#lblCustomerName").text('LOVE SINGH');
Example 2: how to use the label tag in html
<label for="id_of_what_you're_labeling"></label>
<!-- for example-->
<label for="username"></label>
<input type="text" id="username">