HTML Programs Javascript
HTML Programs Javascript
html
<!DOCTYPE html>
<html>
<head>
<title>000</title>
</head>
<body bgcolor="yellow">
<h1>calculating the area with radius</h1>
<script type="text/javascript">
var r,area;
r = prompt("Enter the radius of the circle");
area = 3.14 * r * r
document.write("<h1> The radius is :"+r+"</h1>")
document.write("<h1> The area is :"+area+"</h1>")
</script>
</body>
</html>
2_name_30.html
<!DOCTYPE html>
<html>
<head>
<title>
decision making
</title>
</head>
<body>
<h1>if statement</h1>
<script type="text/javascript">
var age ;
age = prompt("Enter your age");