<html>
<head>
<script type="text/javascript">
function displayDate()
{
[Link]("demo").innerHTML
=Date();
}
</script>
</head>
<body>
<h1>My First Web Page</h1>
<p id="demo">This is a paragraph.</p>
<button type="button"
onclick="displayDate()">Display Date
</button>
</body>
</html>
.
<html>
<body>
<h1>My First Web Page</h1>
<script type="text/javascript">
[Link]("<p>" + Date() + "</p>");
</script>
</body>
</html>
<html>
<body>
<h1>My First Web Page</h1>
<p id="demo"></p>
<script type="text/javascript">
[Link]("demo").inne
rHTML=Date();
</script>
</body>
</html>