Tip: Getting rid of URL bar on Android

1. Add this line of code to Main(). It forces the screen to
reposition, moving the URL bar off the top.

Sub Main()
  setTimeout(window.scrollTo(0,window.innerHeight),100)
End Sub

2. Put this code in your program. It makes the contents of the screen full size.

HTML
  <p><br>
  <p><br>
  <p><br>
  <p><br>
  <p><br>
  <p><br>
  <p><br>
  <p><br>
  <p><br>
  <p><br>
  <p><br>
End HTML

We will be developing a more elegant solution, but this should work for now.