<html>
<head>
<title>Example 1</title>
</head>
<body>
<h1> hello</h1>
<script>
//alert("hello...");
document.write("hello...");
</script>
</body>
</html>
<html>
<head>
<title>Example 3</title>
</head>
<body>
<h1> hello</h1>
<script>
var s = "how are you..";
for (var i=1; i<=3; i++) {
//alert(s+1);
document.write("hello...");
}
</script>
</body>
</html>