{
const container = document.createElement("div");
container.style = "display:flex;overflow-x:scroll";
const makeImg = src => {
const el = document.createElement("img");
el.style = `display:flex;height: 600px;margin:0 10px`;
el.src = src;
return el;
};
contents.forEach(item => container.appendChild(makeImg(item.download_url)));
return container;
}