Please send questions to
st10@humboldt.edu .
<html>
<!--
js_doc_props1.html
adapted from example in Chapter 1, pp. 15-19, in:
"JavaScript: Concepts and Techniques - Programming Interactive
Web Sites", by Tine Spain McDuffie, published by
Franklin, Beedle and Associates, 2003.
adapted by: Sharon Tuttle
last modified: 8-27-06
-->
<head>
<title> js_doc_props1 </title>
</head>
<body bgcolor="yellow" text="red">
<h3> js_doc_props1.html </h3>
<h3> ADAPTED from example in Chapter 1, pp. 15-19, in: <br>
"JavaScript: Concepts and Techniques - Programming Interactive
Web Sites", <br>
by Tine Spain McDuffie, <br>
published by Franklin, Beedle and Associates, 2003.<h3>
<h4> (adapted by Sharon Tuttle, last modified 09-05-06) </h4>
<hr>
<script type="text/javascript">
<!--
document.write("original bgcolor: ", document.bgColor, "<br>")
document.write("original fgcolor: ", document.fgColor, "<br>")
document.write("<h1 align=\"center\"> Hello </h1>")
document.write("<br>")
document.bgColor = "blue"
document.fgColor = "white"
document.write("NEW bgcolor: ", document.bgColor, "<br>")
document.write("NEW fgcolor: ", document.fgColor, "<br>")
//-->
</script>
<noscript>
<hr>
<h3> Your browser does not support JavaScript, or has it disabled;
<br>
please note that, as a result, this page will not work. </h3>
<hr>
</noscript>
<hr>
</body>
</html>