html
#1
Posted 18 December 2002 - 01:59 PM
#2
Posted 18 December 2002 - 04:47 PM
http://archive.ncsa....LPrimerAll.html
#3
Posted 18 December 2002 - 04:54 PM
#4
Posted 18 December 2002 - 05:24 PM
VIEW/SOURCE
#5
Posted 18 December 2002 - 09:32 PM
the best resource of all... VIEW/SOURCE
LOL, you might learn a bit about Java and some XML that way, too. ^_^
-@®©1-1@/\/GE1_
#6
Posted 19 December 2002 - 10:21 AM
#7
Posted 20 December 2002 - 12:16 AM
No way I have that book! I read that right befor I took my web design courses. Its real goodTeach Yourself HTML in 10 Minutes, published by SAMS.
#8
Posted 23 December 2002 - 02:22 PM
the book i'm working out of has me write up a script to calculate seconds per year and then use java script to write html to say how my seconds this monkey dances for. ( don't ask me about the monkey plz!)
but heres my script maybe someone could tell me what i'm doing wrong
[QUOTE]
<script language="JavaScript">
<!-- hide me
// load up some variables
var secs_per_min = 60;
var mins_per_hour = 60;
var hours_per_day = 24;
var days_per_year = 365;
// do some calculations
var secs_per_day = secs_per_min * mins_per_hour * hours_per_day;
var secs_per_year = secs_per_day * days_per_year;
// end hiding-->
<script language="JavaScript">
<!-- hide me
// here's how to use JavaScript to write out HTML
document.writeln("The monkey dances ");
document.writeln(secs_per_year);
document.writeln(" seconds per year.
");
[QUOTE]
Thanx
#9
Posted 23 December 2002 - 08:30 PM
hows about putting after each
</SCRIPT>
#10
Posted 23 December 2002 - 10:38 PM
Thank You Nick
Thought i had it fixed.
<script language="JavaScript">
<!-- hide me
// load up some variables
var secs_per_min = 60;
var mins_per_hour = 60;
var hours_per_day = 24;
var days_per_year = 365;
// do some calculations
var secs_per_day = secs_per_min * mins_per_hour * hours_per_day;
var secs_per_year = secs_per_day * days_per_year;
// end hiding-->
</script>
</head>
<body bgcolor="#000000" text="#FFFFFF" link="#FFFFFF" vlink="#6666FF">
<script language="JavaScript">
<!-- hide me
// here's how to use JavaScript to write out HTML
document.writeln("<b><p>The monkey dances ");
document.writeln(secs_per_year);
document.writeln(" seconds per year.</b></p>");
</script>
// end hiding-->
</body>
</html>
but still doesn't do what its suppose to... i've tried taking things out like the command document.writeln i took out the "ln" part and that doesn't work. i don't mean to sound like i'm whineing or anything i would like to figure this out but i know i need help and hopefully this is the tip of the mountain i need to get over and maybe this will be cake!
#11
Posted 23 December 2002 - 11:05 PM
<html>
<title>
y0
</title>
<script language="JavaScript">
var secs_per_min = 60;
var mins_per_hour = 60;
var hours_per_day = 24;
var days_per_year = 365;
var secs_per_day = secs_per_min * mins_per_hour * hours_per_day;
var secs_per_year = secs_per_day * days_per_year;
</script>
</head>
<body bgcolor="#000000" text="#FFFFFF" link="#FFFFFF" vlink="#6666FF">
<script language="JavaScript">
document.writeln("<b><p>The monkey dances ");
document.writeln(secs_per_year);
document.writeln(" seconds per year.</b></p>");
</script>
</body>
</html>
http://www.w1nt3rmut3.net/y0.html
#12
Posted 23 December 2002 - 11:47 PM
??
Thanx mut3 that was a great help ( or slap in the face of horrible coding i guess.) but thanx
BinRev is hosted by the great people at Lunarpages!












