Here are some usefull codes for neopets and sites and whatever.To use them replace the words in " " with the information
required.P.S.Some words may not have the" " but the same thing goes for example for bold <b>Text here</b>.You
would replace Text here with what you wanted to appear in bold, okay?P.P.S.When filling in the text in between the " " don't
erase the " " as well.
BOLD
To make text appear in bold simply put it in between this code.
<b>Text here</b>
P.S All my typing is in bold
ITALICS
To put text in italics put it in between this code.
<i>Text here</i>
UNDERLINE
To underline text put it in between this code.
<u>Text here</u>
FONT SIZE
To change the font size put the a size from 1-7 that you want and the text you want in that size in this
code.
<font size=>"number"Text here</font>
FONT COLOUR
To change the colour of the text put the colour you want in this code and the text you want to change
colour in this code.
<font colour="colour">Text here</font>
IMAGES
To put a image some where put it's url in this code.P.S. If you left click on it and go to properties it will list
some info about it inculdeing the url.
<img src="image url">
BACKROUNDS
To put in a backround or have different backrounds on display like i do use this code just fill in the url for the backround.Don't
fill in fixed.
<body backround="url here"bgproperties="fixed">
LINKS
To link to a site like i did with my midis use this link.
<a href="url here">Click Here!</a>
IMAGE LINK
Here is a link for images from other sites.
<a href="url here">img src="image url here"></a>
LINE
To put a line threw your site just use this code and fill in the size colour and other stuff.
<hr color="colour" width="percent" size="number" align="direction">
LIST
To list somthing in a certain order use this code just fill in what the item is.The list can go way more than
3 though.
<ol>
<li>#1</li>
<li>#2</li>
<li>#3</li>
</ol>
BACKROUND MUSIC
To have backround music use this code.Just fill in the url and if you want to replace infinite with a number so the song
will play that many times before stopping.
<BGSOUND SRC="url of song" LOOP="infinite" AUTOSTART="TRUE">
CONSOLE PLAYER
To have a consoleplayer so people visiting your page or website can play, pause or stop your backround music.
<embed src="url of song" width="118" height="30" autostart="true" loop="false">
JUKE BOX
This allows people who visit your site or where ever to pick what backround music they want to listen to.Just to let
you know you can get rid of and replace the songs they already have on the juke box that come free with it just
erase the underlined song url's that end with .mid ok? and to add more songs just copy the code that starts
with songNum[0] and copy it changeing the 0 to whatever number song it is and add the song url. Place it under the
other songs u have listed.
<HEAD>
var music = null;
var track = 0;
var ver = navigator.appName;
function audioCheck(plugName) {
for (var i
= 0; i < navigator.plugins.length; i++) {
if (navigator.plugins[i].name.toLowerCase() == plugName.toLowerCase()) {
for
(var j = 0; j < navigator.plugins[i].length; j++) {
if (navigator.plugins[i][j].enabledPlugin) {
return true;
}
}
return false;
}
}
return false;
}
function chooseSong(s) { // ie
track = s.options[s.selectedIndex].value;
if (ver == "Microsoft Internet Explorer") {
document.all.music.src = songNum[track];
} else {
songPlay('play');
}
}
function songPlay(cmd) { // netscape
if (audioCheck("LiveAudio")) {
if (cmd == 'play') {
document.musicSource.play(false,
songNum[track]);
}
} else {
alert("You Do Not Have The Correct Plugin");
}
}
//
End -->
</script>
</HEAD>
<BODY>
<!-- following code added by server. PLEASE REMOVE -->
<link
href="
http://us.geocities.com/js_source/div.css" rel="stylesheet" type="text/css"><script language="JavaScript" src="
http://us.geocities.com/js_source/div03.js"></script>
<!-- preceding code added by server. PLEASE REMOVE -->
<center>
<form name=choose>
<select size=1 name=track onChange="chooseSong(this);">
<option
value="0">Click For Music</option>
<option value="1">Whiskey In A Jar</option>
<option value="2">Aeroplane</option>
<option
value="3">Genie In A Bottle</option>
<option value="4">Hell</option>
</select>
<input
type=button onMouseDown="chooseSong(document.choose.track)" value=" Play ">
</form>
<script language="JavaScript">
<!-- Begin
var ver = navigator.appName;
if (ver == "Microsoft Internet
Explorer") {
document.write('<bgsound src="#" ID=music loop=1 AUTOSTART=true>');
} else {
document.write('<embed
type="audio/midi" src="aeroplane.mid" AUTOSTART=false hidden=true VOLUME="90" name="musicSource" MASTERSOUND></EMBED>');
}
//
End -->
</script>
</center>
p.s change the option value song thin too to the name of the song you replaced it with.
DISABLE RIGHT CLICKING
To disable right clicking use this code just replace the alert message in the " " with what message you want to pop up
when people right click.
<body oncontexmenu="alert ("MESSAGE");window.event.returnValue=false">
MOVING TEXT
To have your text move use one of these codes.Just fill in the text you want to move.The thing above each code it shows
which direction the text moves.
Direction: left
<marquee>
Your Message Here</marquee>
Direction: right
<marquee direction=right>
Your Message Here</marquee>
Direction: side to side
<marquee behavior=alternate>
Your Message Here</marquee>
Direction: up
<marquee direction=up height=35 width=150>
Your Message Here</marquee>
Direction: down
<marquee direction=down height=35 width=150>
Your Message Here</marquee>
Direction: up & down moving
<marquee behavior=alternate direction=up scrollamount=1 scrolldelay=60 height=60 style="text-align;filter:wave(add=0,phase=1,freq=1,strength=15,color=blue)">Your
Message Here</marquee>
Disperse
To have your text dispearse use this code.
<marquee scrollamount=2 width=8><< </marquee>Your text here <marquee scrollamount=2 direction=right
width=8> >></marquee>
Anchor
To link to a site use this code.
<A HREF="site url">Visit Our Site</A>