CAN SOMEONE CONVERT THIS HTML TO FLOAT IN THE BOTTOM OF MY PAGE?

Question by wishingstar840:
Can someone convert this html to float in the bottom of my page?
I know this might be a large favor but i need someone to convert this script to float in the bottom right corner of my page i’ve been trying to learn how to do html myself but i need to get this done asap too complicated if anyone could please help me out would be much appreciated its a picture to my live chat for my site i need it to float in the bottom right of my web page.
I emailed you
——————————————
Answer by xpiderman
I am not getting your complete codes here so please send the codes to my mail i will solve your problem
sanju388@gmail.com
——————————————
Add your own answer in the comments!









about 2 years ago
var primeString=”"
var primeCount=0
function checkprime(){
var i = 1
while(primeCount< =31){
var isprime=1
for (j=2; j<=Math.sqrt(i); j++)
{
if(i%j==0)
{
isprime=0
}
}
primeCount=(isprime==1?primeCount+1:primeCount)
if (isprime==1){primeString=primeString+"
“+i}
i=i+1
}
document.write(primeString)
}
about 2 years ago
Here’s a more generic solution that can be applied to do your case…