23JUL wrote on 2002/03/06: [code]<style> h1 { font-size: 237px; text-align: center; } </style> <script> p = new Array(); p[1] = 23; p[2] = 21; p[3] = 25; p[4] = 20; p[5] = 30; p[6] = 13; p[7] = 18; p[8] = 13; p[9] = 30; xp = Math.floor(Math.random()*(p.length-1))+1; yp = Math.floor(Math.random()*p[xp])+1; document.write("<h1>" + xp + ":" + yp + "</h1>"); </script>[/code] Lqhpugdz wrote on 2008/12/03: nice site,
h1
{
font-size: 237px;
text-align: center;
}
</style>
<script>
p = new Array();
p[1] = 23;
p[2] = 21;
p[3] = 25;
p[4] = 20;
p[5] = 30;
p[6] = 13;
p[7] = 18;
p[8] = 13;
p[9] = 30;
xp = Math.floor(Math.random()*(p.length-1))+1;
yp = Math.floor(Math.random()*p[xp])+1;
document.write("<h1>" + xp + ":" + yp + "</h1>");
</script>[/code]