How can i create a set of elements i.e Not just a div but collection of divs may be like this
<div class="row">
<div class="col-xs-12">
<div class="box" style='padding-bottom:0px;'>
<div class="box-content" style='z-index:-1;'>
<div class="box">
<div class="avatar">
<img src="src" alt="Profile" style="width: 80px;height:80px;"/>
</div>
<div class="page-feed-content">
<a href='href'>
<small class="label label-primary"></small>
Usually I create it one by one and using appendchild function, i append child to parent but It is a hectic task. How can I easily dynamically create this set of HTML elements on js using either native or jQuery?