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
getText("fetch_info.txt");

// fetch and display the contents of the file
async function getText(file) {
  let x = await fetch(file);
  let y = await x.text();
  document.getElementById("demo").innerHTML = y;
}