adding html element using jquery code example
Example 1: append after element jquery
$("p").after(" <b>You can write your Text Here </b>.");
Example 2: jquery append html
$("p").append(" <b>You can write your Text Here </b>.");
$("p").after(" <b>You can write your Text Here </b>.");
$("p").append(" <b>You can write your Text Here </b>.");