<html>
<head>
<title>JavaScript Training</title>
</head>
<body>
<script type="text/javascript">
function demo() // Create Function
{
alert("Hello World !!");
}
demo(); //Calling Function
</script>
</body>
</html>
<head>
<title>JavaScript Training</title>
</head>
<body>
<script type="text/javascript">
function demo() // Create Function
{
alert("Hello World !!");
}
demo(); //Calling Function
</script>
</body>
</html>
0 comments:
Post a Comment