Posts

Showing posts with the label Api

How to create website with bootstrap

  How to create a Blogger template (video version) http://blog.harenbergsd.com/2017/07/how-to-create-blogger-template.html

Basic fetch api Script code

  Basic fetch api Script code A basic fetch request is really simple to set up Have a look at the following code: fetch(‘url’) .then(function(response) { return response.json(); }) .then(function(res2) { console.log(res2); });