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="[URL unfurl="true"]http://./somepage.html">link</a>[/URL]
<a href="[URL unfurl="true"]https://./somepage.html">link</a>[/URL]
<html>
<head>
<script type="text/javascript">
<!--
function setupLinks() {
var anchors = document.getElementsByTagName('a');
for (var loop=0; loop<anchors.length; loop++) {
if ((' ' + anchors[loop].className + ' ').indexOf(' http ') != -1) anchors[loop].protocol = 'http:';
else if ((' ' + anchors[loop].className + ' ').indexOf(' https ') != -1) anchors[loop].protocol = 'https:';
}
}
//-->
</script>
</head>
<body onload="setupLinks();">
<a href="page1.html" class="http">Unsecure Link</a>
<a href="page1.html" class="https">Secure Link</a>
</body>
</html>