Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
<script>
//Колко линка и текста ще показва в момента са 4
var totallinks=4
var urls=new Array(totallinks)
var descriptions=new Array(totallinks)
var titles=new Array(totallinks)
urls[0]="http://линк1"
descriptions[0]="Текст 1"
titles[0]="Заглавие 1"
urls[1]="http://линк2"
descriptions[1]="Текст 2"
titles[1]="Заглавие 2"
urls[2]="http://линк3"
descriptions[2]="Текст 3"
titles[2]="Заглавие 3"
urls[3]="http://линк4"
descriptions[3]="Ткест 4"
titles[3]="Заглавие 4"
var MachoManRandomSavage=Math.floor(Math.random()*totallinks)
</script>
<script>
var cont=titles[MachoManRandomSavage]+"<br />"+descriptions[MachoManRandomSavage]
cont+="<br /><a href='"+urls[MachoManRandomSavage]+"'>"
cont+=urls[MachoManRandomSavage]+"</a><br />"
document.write(cont)
</script>