XaieL
12-02-2003, 12:13 PM
Yeah well I had someone help me out before, so I got down the easy part, and have shortened it into just Basic code, but am not sure which color is which or how to put it in.
What i want to do it make all font color White and have the entire Backround blue.. Me being a Js newbie, I don't quite know how to do that. appreciate any one's help with this
<html>
<head>
<title>Horoscopes</title>
<script language="Javascript">
<!--hide me
//get a name
var name = prompt("What's your name?", "")
var month = prompt("What month were you born (numer, from 1 to 12)?", "")
var phrases=new Array()
phrases[1]="Horoscope for January 20-February 18 *Sign is Aquarius* ";
phrases[2]="Horoscope for February 19-March 20 *Sign is Pisces* - ";
phrases[3]="Horoscope for March 21-April 19 *Sign is Aries* - ";
phrases[4]="Horoscope for April 20-May 20 *Sign is Taurus* - ";
phrases[5]="Horoscope for May 21-June 21 *Sign is Gemini* - ";
phrases[6]="Horoscope for June 22-July 22 *Sign is Cancer* - ";
phrases[7]="Horoscope for July 23-August 22 *Sign is Leo* - ";
phrases[8]="Horoscope for August 23-September 22 *Sign is Virgo* - ";
phrases[9]="Horoscope for September 23-October 22 *Sign is Libra* - ";
phrases[10]="Horoscope for October 23 - November 21 *Sign is Scorpio* - ";
phrases[11]="Horoscope for November 22-December 21 *Sign is Saggitarius* - ";
phrases[12]="Horoscope for December 22-January 19 *Sign is Capricorn* - ";
//go on up to december
write=name+", ";
for(i=1;i<13;i++){
if(month==i){
write+=phrases[i]
break;
}
}
document.write(write);
//stop hiding me-->
</script>
</head>
<body>
</body>
</html>
What i want to do it make all font color White and have the entire Backround blue.. Me being a Js newbie, I don't quite know how to do that. appreciate any one's help with this
<html>
<head>
<title>Horoscopes</title>
<script language="Javascript">
<!--hide me
//get a name
var name = prompt("What's your name?", "")
var month = prompt("What month were you born (numer, from 1 to 12)?", "")
var phrases=new Array()
phrases[1]="Horoscope for January 20-February 18 *Sign is Aquarius* ";
phrases[2]="Horoscope for February 19-March 20 *Sign is Pisces* - ";
phrases[3]="Horoscope for March 21-April 19 *Sign is Aries* - ";
phrases[4]="Horoscope for April 20-May 20 *Sign is Taurus* - ";
phrases[5]="Horoscope for May 21-June 21 *Sign is Gemini* - ";
phrases[6]="Horoscope for June 22-July 22 *Sign is Cancer* - ";
phrases[7]="Horoscope for July 23-August 22 *Sign is Leo* - ";
phrases[8]="Horoscope for August 23-September 22 *Sign is Virgo* - ";
phrases[9]="Horoscope for September 23-October 22 *Sign is Libra* - ";
phrases[10]="Horoscope for October 23 - November 21 *Sign is Scorpio* - ";
phrases[11]="Horoscope for November 22-December 21 *Sign is Saggitarius* - ";
phrases[12]="Horoscope for December 22-January 19 *Sign is Capricorn* - ";
//go on up to december
write=name+", ";
for(i=1;i<13;i++){
if(month==i){
write+=phrases[i]
break;
}
}
document.write(write);
//stop hiding me-->
</script>
</head>
<body>
</body>
</html>