exercise 1.Write the following web page:
<html>
<head> <title>Javascript</title> </head>
<body>
<p>
The following text is written to the page by Javascript.
</p>
<script type="text/javascript">
document.write("<center> <h1> Hi! </h1></center>")
</script>
</body>
</html>
The above script demonstrates the basic object.method (object-dot-method) paradigm.
No comments:
Post a Comment