Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<a href= "a.html" target="_blank" onclick="window.open('a.html','mywindow','width=100,height=100';">Link</a>
onclick="window.open('a.html','mywindow','width=100,height=100,top=20,left=20';">Link</a>
[COLOR=grey]instead of:[/color] onclick="window.open([COLOR=red]'a.html'[/color],
[COLOR=grey]use:[/color] onclick="window.open([COLOR=red]this.href[/color],
<a href= "a.html" target="_blank" onclick="window.open(this.href,'mywindow','width=100,height=100');[b]return false;[/b]">Link</a>