html, body {
display: grid;
justify-content: center;
align-content: center;
height: 100%;
font-family: sans-serif;
font-size: 1.1rem;
}
fetch('https://jsonplaceholder.typicode.com/users/1')
.then(response => response.json())
.then(json => document.write(JSON.stringify(json)))
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.