This site is mobile accessible. Press the "Tap Here" button to use a different font-size.


Smartphone icons created by Freepik - Flaticon

JS Web Storage API

// create a web storage item
localStorage.setItem("name","John Doe");

// display the content of the web storage item
document.getElementById("demo").innerHTML = localStorage.getItem("name");