POP UP using HTML
Click here for the result
Copy Text Program
Program Code
<html>
<head>
<script type="text/javascript">
<!--
function sayHello() {
alert("Hello World ")
}
</script>
</head>
<body>
Click here for the result <br>
<input type="button" onclick="sayHello()" value="Say Hello" />
</body>
</html>
Copy Text Program
Comments
Post a Comment