INTERACTIVE MEDIA DESIGN: MY FIRST JAVA SCRIPT
Assignment No. 1
CODE:
<html>
<head> <title>My Place</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 Earthlings!") ;
document.write("<br> Welcome to my World" );
name=prompt("Enter your name")
document.write("<br> Name : <b>" +name );
course=prompt("Enter your course")
document.write("<br> Course <b>:" +course);
//-->
</script>
</body>
RESULT:
Comments
Post a Comment