This zone is sleeping right now! ZzzZZzzz

Better not disturb it! ~You go to the petrol station and buy a slushy instead, everything is cool!~

This area will open again in 000.beats!

(Learn about Swatch Time)

Some other zones are awake :^]


Artifacts Gallery Guilds Search Wiki Login Register

Welcome, Guest. Please login or register. - Thinking of joining?
a Summer day - @362.88
Activity rating: Three Stars Posts & Arts: 33/1k.beats Random | Recent Posts | Guild Recents
News: It's only life! :dog: Guild Events: Summer Projects

+  MelonLand Forum
|-+  Life & The Web
| |-+  ✁ ∙ Web Crafting
| | |-+  Neocity/Geocity Personality Quizzes


« previous next »
Pages: [1] Print Embed
Author Topic: Neocity/Geocity Personality Quizzes  (Read 1719 times)
dotmidi
Hero Member ⚓︎
*****
View Profile WWWArt


manly men can doll, too!
⛺︎ My Room

Guild Memberships:
Artifacts:
Gift of CubesealVisited on Melon's 10th Anniversary!ビートルさんPolyamorousMooshroom Spawn Egg!#@&*$
« on: a Winter night » Embed

SOoo, I've been doing a lot of personality quizzes to add to my website and I was wondering how one could make these kindsa quizzes for their websites! Me and Twan1 were discussing making a personality quiz on "What Kind of Gross Water Are You?" and I was wondering how we could go about coding a classic geocity quiz like these. I've never made a personality quiz before so I was just curious as to anywhere I could code/make one,
 orr share your own personal experiences with personality quizzes you've played or made.  :ok:  :ok:

Logged


Artifact Swap: DazzlerWurby
Cele
Hero Member ⚓︎
*****
View Profile WWW


⛺︎ My Room

Artifacts:
Great Posts PacmanFirst 1000 Members!Joined 2022!
« Reply #1 on: a Winter night » Embed

The site you linked seems to use JavaScript for it.

Code
<script language="JavaScript">
<!--
function process()
{
    var rose = 0;
    var tulip = 0;
    var  lupine= 0;
    var lily = 0;
        var f = document.f;
    var i = 0;

    for (i = 0; i < f.one.length; i++) if (f.one[i].checked) value = f.one[i].value;
    if (value == "1") { rose++; }
    if (value == "2") { tulip++; }
    if (value == "3") { lupine++; }
    if (value == "4") { lily++; }
    

    for (i = 0; i < f.two.length; i++) if (f.two[i].checked) value = f.two[i].value;
    if (value == "1") { rose++; }
    if (value == "2") { tulip++; }
    if (value == "3") { lupine++; }
    if (value == "4") { lily++; }
    
    for (i = 0; i < f.three.length; i++) if (f.three[i].checked) value = f.three[i].value;
    if (value == "1") { rose++; }
    if (value == "2") { tulip++; }
    if (value == "3") { lupine++; }
    if (value == "4") { lily++; }
    


    for (i = 0; i < f.four.length; i++) if (f.four[i].checked) value = f.four[i].value;
    if (value == "1") { rose++; }
    if (value == "2") { tulip++; }
    if (value == "3") { lupine++; }
    if (value == "4") { lily++; }
    

    
    for (i = 0; i < f.five.length; i++) if (f.five[i].checked) value = f.five[i].value;
    if (value == "1") { rose++; }
    if (value == "2") { tulip++; }
    if (value == "3") { lupine++; }
    if (value == "4") { lily++; }

    for (i = 0; i < f.six.length; i++) if (f.six[i].checked) value = f.six[i].value;
    if (value == "1") { rose++; }
    if (value == "2") { tulip++; }
    if (value == "3") { lupine++; }
    if (value == "4") { lily++; }
    


    var out = "rose";
    i = rose;
    if (rose > i) { out = "rose"; i = rose; }
    if (tulip > i) { out = "tulip"; i = tulip; }
    if (lupine > i) { out = "lupine"; i = lupine; }
    if (lily > i) { out = "lily"; i = lily; }

    location.href = out + ".html";
}
function err(msg, url, line)
{
        location.href = "error.html";
}
//window.onerror = err;
// -->
</script>

And then

Code
<form name="f">
</font><font color="black"><b>which of these colors do you like more</b><br>
<input type="radio" name="one" value="1">red<br>
<input type="radio" name="one" value="2">yellow<br>
<input type="radio" name="one" value="3">purple<br>
<input type="radio" name="one" value="4">orange<br>

<br><br>
</font>
<font color="black"><b>whats your fashion style</b><br>
<input type="radio" name="two" value="1">everything elegant and pretty<br>
<input type="radio" name="two" value="2">anything comftorable<br>
<input type="radio" name="two" value="3">preppy<br>
<input type="radio" name="two" value="4">goth<br>

</font>
<br><br>

<font color="black"><b>whats your kind of movie</b><br>
<input type="radio" name="three" value="1">romance<br>
<input type="radio" name="three" value="2">comedy<br>
<input type="radio" name="three" value="3">action<br>
<input type="radio" name="three" value="4">scary<br>

</font><br><br>

<font color="black"><b>your would rather:</b><br>
<input type="radio" name="four" value="1">eat<br>
<input type="radio" name="four" value="2">run<br>
<input type="radio" name="four" value="3">watch tv<br>
<input type="radio" name="four" value="4">hang out with friends<br>
</font>
<br><br>

<font color="black"><b>whats your favorite candy of these:</b><br>
<input type="radio" name="five" value="1">twizzlers<br>
<input type="radio" name="five" value="2">m &amp; m's <br>
<input type="radio" name="five" value="3">snickers<br>
<input type="radio" name="five" value="4">starburst<br>
<br>
<font color="black"><b>your ideal friend is:</b><br>
<input type="radio" name="six" value="1">trustworthy<br>
<input type="radio" name="six" value="2">honest<br>
<input type="radio" name="six" value="3">fun<br>
<input type="radio" name="six" value="4">caring<br>



<br>
<input type="button" value=" WHATS YOUR FLOWER? " onclick="process();" style="font-family:veranda; font-size=8pt; border:1; border-color:orange;  border-style:solid; background-color:white"><br><br><br>

And it seems so that after clicking the "What's your flower?" button, it takes you to a new page which is flowers name and .html. I've never actually tried this, just looked at the code on the site you linked... maybe there's an easier way.

I guess I can put in the result I got... tulip!

https://web.archive.org/web/20040210012357im_/http://www.peachie.nu/tulip.gif

Logged

https://64.media.tumblr.com/f339750d47b841f86b411f210c89bc48/a3f9ac693d24060d-e8/s400x600/2fce684b29380077b902465628201ec7b63f98ff.png
http://www.tiptopglobe.com/userbar/7fa851235decd83fb1f04728a2473956.png
http://www.tiptopglobe.com/userbar/f082aecc2519321c0a13c39f701907bf.png
https://img.pokemondb.net/sprites/black-white/anim/normal/gothorita.gif
Pages: [1] Print Embed 
« previous next »
 

Melonking.Net © Always and ever was! SMF 2.0.19 | SMF © 2021 | Privacy Notice | Send Feedback | Supporters ♥ Forum Guide | Rules | RSS | WAP | Mobile


MelonLand Badges and Other Melon Sites!

MelonLand Project! Visit the MelonLand Forum! Support the Forum
Visit Melonking.Net! Visit the Gif Gallery! Pixel Sea TamaNOTchi
@000 MelonLand Zap! Want to Login or Join ? Forum Art Hub Chat Webring Editor Recent Edits Tenement Arcade Web Guides Graphics Catalogue Wiki Newsletters Image Stream
Melon's Sites TamaNotchi Textures PixelSea GifyPet MoMG Ozwomp Online Loom Videos Leaky Webring Melonking
Tools Melon Software ArtHub Embed Maker ML Passports
Outlinks Webrings Internet Phone Book HTML Energy Declarations Hackers & Designers Frutiger Aero Forum m15o's Web Services 32Bit Cafe iMood
Minecraft: Online
Join: craft.melonking.net