Skip to content

Instantly share code, notes, and snippets.

@Luciushy
Created October 20, 2018 17:57
Show Gist options
  • Save Luciushy/f894bfeeea82b608ebb973a2ff345bd4 to your computer and use it in GitHub Desktop.
Save Luciushy/f894bfeeea82b608ebb973a2ff345bd4 to your computer and use it in GitHub Desktop.
jeKZLY
<div id="container"></div>
var url = 'https://newsapi.org/v2/top-headlines?' +
'country=us&' +
'apiKey=f19b9ed0e82446e59b104db20eb85d65';
var req = new Request(url);
fetch(req)
.then(function(response) {
console.log(response.json());
})
body{
margin:0;
}
#container{
display:flex;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment