Online Gamers

We see you are not logged in. Please log in or join the Online Gamers community today! Thanks!

~Cheers~

- The Staff

Join the forum, it's quick and easy

Online Gamers

We see you are not logged in. Please log in or join the Online Gamers community today! Thanks!

~Cheers~

- The Staff

Online Gamers

Would you like to react to this message? Create an account in a few clicks or log in to continue.

The Best Place To Talk About all sorts of games

Forum Owner Death's contest is out! Check any forum and you'll find it as a global announcement.
Yes, The Arceus rank exists!
Read the portal news! It is where ALL updates are placed on at!

4 posters

    HTML Page Contest!

    Poll

    What is the best HTML page?

    [ 4 ]
    HTML Page Contest! I_vote_lcap67%HTML Page Contest! I_vote_rcap [67%] 
    [ 2 ]
    HTML Page Contest! I_vote_lcap33%HTML Page Contest! I_vote_rcap [33%] 

    Total Votes: 6
    Poll closed
    James1011R
    James1011R
    Outrageous Administrator
    Outrageous Administrator


    Badges : HTML Page Contest! 2gsefpxHTML Page Contest! XazynaHTML Page Contest! PwntyfHTML Page Contest! 24wdp9kHTML Page Contest! 2zfpc3nHTML Page Contest! E0o7qxHTML Page Contest! ChatboxHTML Page Contest! 1zp0cbnHTML Page Contest! 14cem39 HTML Page Contest! 16bwl7dHTML Page Contest! Default35HTML Page Contest! 28bwgsh (+1337 Spins)
    Likes Pie : I like Pizza
    Post count : 1306
    Fame : 45
    Join date : 2009-04-11
    Age : 27
    Location : The Universe
    Humor : ZOMG OWNED!

    HAX!
    Level:
    HTML Page Contest! Left_bar_bleue31337/9001HTML Page Contest! Empty_bar_bleue  (31337/9001)
    Inventory (ORPG):
    Nuke Field:

    Ultra Star Topic HTML Page Contest!

    Post by James1011R September 26th 2010, 1:36 pm

    Put the best CODE for an HTML page and the 1st place winner gets created (Maybe 2nd and 3rd)! (Contest lasts until 6/05/2011 [Postponed])


    Vote for the best submission!

    Submission #1

    Submission #2















































    Prizes:1st2nd3rd4th
    Credits2000015000100005000
    Usergroup1st place2nd place3rd placeAttempter Only
    CreationYesProbablyMaybeNo
    Contest Points100,000 (Not Joking!)25,00010,0002,500
    UpgradesMini-Mod (Not Joking!)Outrageous MemberGuardianVIP
    Spins of Winner Wheel4
    321


    Last edited by Admin James1011R on December 4th 2010, 6:51 pm; edited 1 time in total
    sop281
    sop281
    Arceus


    Badges : HTML Page Contest! 2dkekk4HTML Page Contest! XazynaHTML Page Contest! PwntyfHTML Page Contest! 2usedtyHTML Page Contest! 2929thjHTML Page Contest! 2nsv1aoHTML Page Contest! Qso4flHTML Page Contest! Mww9wmHTML Page Contest! E0o7qxHTML Page Contest! Default35HTML Page Contest! 2gsefpx (+3 Spins)
    Likes Pie : Of course i do
    Post count : 630
    Fame : 11
    Join date : 2010-10-09
    Age : 27
    Location : Pennsylvania
    Humor : The only reason people get lost in thought is because it's unfamiliar territory.

    HAX!
    Level:
    HTML Page Contest! Left_bar_bleue272/500HTML Page Contest! Empty_bar_bleue  (272/500)
    Inventory (ORPG):
    Nuke Field: SKYRIM!!!!!!

    Ultra Star Topic Re: HTML Page Contest!

    Post by sop281 November 6th 2010, 7:17 pm

    Hooray i'm terrible at scripting. lol!
    Hinmanthunderboy
    Hinmanthunderboy
    Posting Members
    Posting Members


    Badges : This user has no badges.
    Likes Pie : undefined
    Post count : 1
    Fame : 0
    Join date : 2010-11-29

    Ultra Star Topic The HTML Code Contest

    Post by Hinmanthunderboy November 29th 2010, 7:22 pm


    //// Set the number of snowflakes (more than 30 - 40 not recommended)
    var snowmax=30

    // Set the colors for the snow. Add as many colors as you like
    var snowcolor=new Array("#DF0101")

    // Set the fonts, that create the snowflakes. Add as many fonts as you like
    var snowtype=new Array("Times")

    var snowletter="*"

    var sinkspeed=0.6
    var snowmaxsize=15

    var snowminsize=15

    var snowingzone=1



    var snow=new Array()
    var marginbottom
    var marginright
    var timer
    var i_snow=0
    var x_mv=new Array();
    var crds=new Array();
    var lftrght=new Array();
    var browserinfos=navigator.userAgent
    var ie5=document.all&&document.getElementById&&!browserinfos.match(/Opera/)
    var ns6=document.getElementById&&!document.all
    var opera=browserinfos.match(/Opera/)
    var browserok=ie5||ns6||opera

    function randommaker(range) {
    rand=Math.floor(range*Math.random())
    return rand
    }

    function initsnow() {
    if (ie5 || opera) {
    marginbottom = document.body.clientHeight
    marginright = document.body.clientWidth
    }
    else if (ns6) {
    marginbottom = window.innerHeight
    marginright = window.innerWidth
    }
    var snowsizerange=snowmaxsize-snowminsize
    for (i=0;i<=snowmax;i++) {
    crds[i] = 0;
    lftrght[i] = Math.random()*15;
    x_mv[i] = 0.03 + Math.random()/10;
    snow[i]=document.getElementById("s"+i)
    snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)]
    snow[i].size=randommaker(snowsizerange)+snowminsize
    snow[i].style.fontSize=snow[i].size
    snow[i].style.color=snowcolor[randommaker(snowcolor.length)]
    snow[i].sink=sinkspeed*snow[i].size/5
    if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)}
    if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)}
    if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4}
    if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2}
    snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size)
    snow[i].style.left=snow[i].posx
    snow[i].style.top=snow[i].posy
    }
    movesnow()
    }

    function movesnow() {
    for (i=0;i<=snowmax;i++) {
    crds[i] += x_mv[i];
    snow[i].posy+=snow[i].sink
    snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]);
    snow[i].style.top=snow[i].posy

    if (snow[i].posy>=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)>(marginright-3*lftrght[i])){
    if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)}
    if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)}
    if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4}
    if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2}
    snow[i].posy=0
    }
    }
    var timer=setTimeout("movesnow()",50)
    }

    for (i=0;i<=snowmax;i++) {
    document.write(""+snowletter+"<\/span>")
    }
    if (browserok) {
    window.onload=initsnow
    }
    //]]>
    sop281
    sop281
    Arceus


    Badges : HTML Page Contest! 2dkekk4HTML Page Contest! XazynaHTML Page Contest! PwntyfHTML Page Contest! 2usedtyHTML Page Contest! 2929thjHTML Page Contest! 2nsv1aoHTML Page Contest! Qso4flHTML Page Contest! Mww9wmHTML Page Contest! E0o7qxHTML Page Contest! Default35HTML Page Contest! 2gsefpx (+3 Spins)
    Likes Pie : Of course i do
    Post count : 630
    Fame : 11
    Join date : 2010-10-09
    Age : 27
    Location : Pennsylvania
    Humor : The only reason people get lost in thought is because it's unfamiliar territory.

    HAX!
    Level:
    HTML Page Contest! Left_bar_bleue272/500HTML Page Contest! Empty_bar_bleue  (272/500)
    Inventory (ORPG):
    Nuke Field: SKYRIM!!!!!!

    Ultra Star Topic Re: HTML Page Contest!

    Post by sop281 December 5th 2010, 11:23 pm

    Wow, that is awesome!
    Forum Owner Death
    Forum Owner Death
    The True Founder and Forum Owner.
    The True Founder and Forum Owner.


    Badges : All of them other then warning, banned, etc. (+9001 Spins)
    Likes Pie : Yesh!
    Post count : 531
    Fame : 493
    Join date : 2008-08-26
    Age : 26
    Location : Deathville.
    Humor : Jokes,Knock Knock Jokes.

    HAX!
    Level:
    HTML Page Contest! Left_bar_bleue9001/1337HTML Page Contest! Empty_bar_bleue  (9001/1337)
    Inventory (ORPG):
    Nuke Field: This...Is...SPARTA!!!!!

    Ultra Star Topic Re: HTML Page Contest!

    Post by Forum Owner Death January 29th 2011, 6:43 pm

    Submission #2 is mine mwehwahhwhawhhawa
    sop281
    sop281
    Arceus


    Badges : HTML Page Contest! 2dkekk4HTML Page Contest! XazynaHTML Page Contest! PwntyfHTML Page Contest! 2usedtyHTML Page Contest! 2929thjHTML Page Contest! 2nsv1aoHTML Page Contest! Qso4flHTML Page Contest! Mww9wmHTML Page Contest! E0o7qxHTML Page Contest! Default35HTML Page Contest! 2gsefpx (+3 Spins)
    Likes Pie : Of course i do
    Post count : 630
    Fame : 11
    Join date : 2010-10-09
    Age : 27
    Location : Pennsylvania
    Humor : The only reason people get lost in thought is because it's unfamiliar territory.

    HAX!
    Level:
    HTML Page Contest! Left_bar_bleue272/500HTML Page Contest! Empty_bar_bleue  (272/500)
    Inventory (ORPG):
    Nuke Field: SKYRIM!!!!!!

    Ultra Star Topic Re: HTML Page Contest!

    Post by sop281 January 31st 2011, 5:48 pm

    I didn't see yours before I voted, I think I should reconsider my vote. Hehe.
    Forum Owner Death
    Forum Owner Death
    The True Founder and Forum Owner.
    The True Founder and Forum Owner.


    Badges : All of them other then warning, banned, etc. (+9001 Spins)
    Likes Pie : Yesh!
    Post count : 531
    Fame : 493
    Join date : 2008-08-26
    Age : 26
    Location : Deathville.
    Humor : Jokes,Knock Knock Jokes.

    HAX!
    Level:
    HTML Page Contest! Left_bar_bleue9001/1337HTML Page Contest! Empty_bar_bleue  (9001/1337)
    Inventory (ORPG):
    Nuke Field: This...Is...SPARTA!!!!!

    Ultra Star Topic Re: HTML Page Contest!

    Post by Forum Owner Death February 20th 2011, 1:03 pm

    Mine is more realistic woot
    sop281
    sop281
    Arceus


    Badges : HTML Page Contest! 2dkekk4HTML Page Contest! XazynaHTML Page Contest! PwntyfHTML Page Contest! 2usedtyHTML Page Contest! 2929thjHTML Page Contest! 2nsv1aoHTML Page Contest! Qso4flHTML Page Contest! Mww9wmHTML Page Contest! E0o7qxHTML Page Contest! Default35HTML Page Contest! 2gsefpx (+3 Spins)
    Likes Pie : Of course i do
    Post count : 630
    Fame : 11
    Join date : 2010-10-09
    Age : 27
    Location : Pennsylvania
    Humor : The only reason people get lost in thought is because it's unfamiliar territory.

    HAX!
    Level:
    HTML Page Contest! Left_bar_bleue272/500HTML Page Contest! Empty_bar_bleue  (272/500)
    Inventory (ORPG):
    Nuke Field: SKYRIM!!!!!!

    Ultra Star Topic Re: HTML Page Contest!

    Post by sop281 February 21st 2011, 6:52 pm

    Yeah, it is.
    Forum Owner Death
    Forum Owner Death
    The True Founder and Forum Owner.
    The True Founder and Forum Owner.


    Badges : All of them other then warning, banned, etc. (+9001 Spins)
    Likes Pie : Yesh!
    Post count : 531
    Fame : 493
    Join date : 2008-08-26
    Age : 26
    Location : Deathville.
    Humor : Jokes,Knock Knock Jokes.

    HAX!
    Level:
    HTML Page Contest! Left_bar_bleue9001/1337HTML Page Contest! Empty_bar_bleue  (9001/1337)
    Inventory (ORPG):
    Nuke Field: This...Is...SPARTA!!!!!

    Ultra Star Topic Re: HTML Page Contest!

    Post by Forum Owner Death May 9th 2011, 8:37 pm

    So vote for mine NAO! Razz

    Sponsored content


    Ultra Star Topic Re: HTML Page Contest!

    Post by Sponsored content


      Current date/time is April 27th 2024, 9:56 am