JavaScript
14
Вклад в тег
fetch('https://jsonplaceholder.typicode.com/albums')
.then(response => response.json())
.then(data => data.forEach((album) => {
document.body.insertAdjacentHTML('beforeEnd', `
<p>${album.userId}</p>
<p>${album.id}</p>
<p>${album.title}</p>
`)
}))
animation: rotate 8s easy-in infinite;
animation: rotate 8s ease-in infinite;