loop thru images in a directory

loop thru images in a directory

Hi I have very little experience using jQuery.
I'm creating a gallery of paintings, below is the html for 1 painting
  1. <div class="d-flex flex-row flex-wrap justify-content-center">
  2.   <div class="d-flex flex-column align-items-center justify-content-center">
  3.       <img class="img-fluid" src="images\landscape0.jpeg">
  4.       <div class="tit-siz">
  5.        <div style="float: left">
  6.           <h4>Landscape</h4>
  7.         </div>
  8.         <div style="float: right">
  9.           <p style="float: right" class="card-text">23cm x 18cm</p>
  10.         </div>
  11.     </div>
  12.   </div>
Is there a way to loop thru the images in the images folder and insert the title and  size using jQuery?
Thanks for any help