Setting new photo for day of the week

Day Tracker

I am making a little day tracker using Javascript. I have the day of the week Text working fine, but I would also love to have a photo for each day as well. I have been struggling to figure out how to assign photos to a day of week. any suggestions?

Well create an array with URL’s for the photos of your choice using https://cloudinary.com/ or your any other image hosting platform an then use JavaScript to render the photos by changing the src attribute with jquery .attr(‘src’,linkArray[i]) or use classes to change background image… there are many ways but only certain ways fit the best for the purpose.