Html

 






<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 javascript var name, course,adress,talent,subject;
document.write("Hello World");
document.write("<br>Welcome to Javascript Programming ");
name=prompt("Enter your name")
document.write("<br>Name <b>:" +name);
course=prompt("Enter your Course")
document.write("<br> Course <b>:" +course);
adress=prompt("Enter your adress")
document.write("<br> Adress <b>:" +adress);
talent=prompt("Enter your talent")
document.write("<br> Talent <b>:" +talent);
subject=prompt("Enter your subject")
document.write("<br> Subject <b>:" +subject);


//-->
</script>
</body>

Comments

Popular Posts