This site is mobile accessible. Press the "Tap Here" button to use a different font-size.
Smartphone icons created by Freepik - Flaticon
Fetch a file to change this text.
// define the file to fetch let file = "fetch_info.txt"; // fetch the file and display the contents fetch (file) .then(x => x.text()) .then(y => document.getElementById("demo").innerHTML = y);