tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

display_paragraph.js (173B)


      1 function display_paragraph() {
      2   const paragraph = document.createElement('p');
      3   paragraph.textContent = "Please display me.";
      4   document.body.appendChild(paragraph);
      5 }