CBSE 3. WEB SCRIPTING - JAVA SCRIPT (5 MARKS)

 

11. Showing Alert Box

JavaScript

<!DOCTYPE html>

<html>

<head>

<title>Alert Box</title>

</head>

<body>

 

<script>

  alert("This is an alert message!");

</script>

 

</body>

</html>

This will display an alert box with the given message.

No comments:

Post a Comment