fetch("https://server.com")
.then(res=>res.json())
.then(data=>{
document.body.innerHTML = data.map((item)=>`
<i class="fa fa-user-circle" aria-hidden="true"></i> ${item.name}
<i class="fa fa-envelope" aria-hidden="true"></i> ${item.email}
`).join(" ");
})
После того как отрендерили полученные данные?