Simple Web Presentation
Excersise: 14
Simple Web Presentation using HTML Tag (Use 3 Pages)
Program
Nwindow.html
<html>
<head><title> create a new window </title>
<head>
<body>
<script language="javaScript">
mywindow=window.open(" ","mine","width=250 height=200");
<script>
</body>
</html>
Hello.html
<html>
<head><title> Hello </title>
</head>
<body>
<script language="javaScript">
name=prompt("What is your name?","");
age=prompt("Enter age");
document.write(name+"Your age is"+age);
</script>
</body>
</html>
lastmodified.html
<html>
<head><title>Testing lastmodified data </title>
</head>
<body>
This page was last modified on:
<script language="javaScript">
document.write(document.lastmodified);
</script>
</body>
</html>
Output
Post a Comment
Thanks for your comments. Please be visit and given positive review on our site.