JSFiddle - React, Tailwind, and code Playground
by MegaScience
CSS
img {
max-width: 100%;
}
JavaScript
const l = ['http://nxcache.nexon.net/maplestory/assets-new/img/bg_footer.png',
'http://nxcache.nexon.net/maplestory/assets-new/img/bg_game_marvelousprizes.jpg',
'http://nxcache.nexon.net/maplestory/assets-new/img/bg_marvel_machine_congrats.png',
'http://nxcache.nexon.net/maplestory/assets-new/img/bg_marvel_machine_double_close.png',
'http://nxcache.nexon.net/maplestory/assets-new/img/bg_marvel_machine_double_icon.png',
'http://nxcache.nexon.net/maplestory/assets-new/img/bg_marvel_machine_double_logo.png',
'http://nxcache.nexon.net/maplestory/assets-new/img/bg_marvel_machine_double_refresh.png',
'http://nxcache.nexon.net/maplestory/assets-new/img/bg_marvel_machine_double-i8a8.png',
'http://nxcache.nexon.net/maplestory/assets-new/img/bg_marvel_machine_glare.png',
'http://nxcache.nexon.net/maplestory/assets-new/img/bg_marvel_machine-i8a8.png',
'http://nxcache.nexon.net/maplestory/assets-new/img/bg_marvelousprizes_prizes_preview.png',
'http://nxcache.nexon.net/maplestory/assets-new/img/bg_page_title_game_marvelmachine.jpg',
'http://nxcache.nexon.net/maplestory/assets-new/img/bg_section_ghosted_grey_variation_1.jpg',
'http://nxcache.nexon.net/maplestory/assets-new/img/icon_marvel_coupons_search.png']
for(let a of l) {
const img = document.createElement('img')
img.src = a
document.body.appendChild(img)
}