Exercise #1
<html>
<head> <title>First Javascript Program place on the body </title> </head>
<body>
<script language = "javascript" type = "text/javascript">
<!-- use comment for browsers that does not support javascipt
var name, course,address,talent,subject ;
document.write("Hello World!") ;
document.write("<br> welcome to Javascript Programming <" );
name=prompt("Enter your name")
document.write("<br> Name : <b>" +name );
address=prompt("Enter your Adress")
document.write("<br> Address: <b>" +address );
course=prompt("Enter your course")
document.write("<br> Course <b>:" +course);
talent=prompt("Enter your talent")
document.write("<br> talent: <b>" +talent );
favoritesubject=prompt("Enter your favoritesubject")
document.write("<br> favoritesubject: <b>" +favoritesubject );
//-->
</script>
</body>