Any idea How can I create the following div structure using JavaScript or JQuery, then i would like to append this structure to a div with a class = "grid"
<div class="grid-item grid-item--width">
<div class="card">
<div class="card-body">
<div class="d-flex flex-row justify-content-between">
<div>
<p class="h5">User Name</p>
<p class="h5">Level</p>
</div>
<div>
<p class="h5">Category</p>
</div>
</div>
<img class="card-img-bottom" src="hands.jpg"
alt="Card image cap" style="width:344px">
<p class="card-text">This is a wider card</p>
<div class="d-flex flex-row justify-content-between">
<div>
<p class="h5">Location</p>
</div>
<div>
<p class="h5">Life Time</p>
</div>
</div>
</div>
</div>
</div>
Appreciate any help