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

 9. Printing a line of Text in a web page

JavaScript

<!DOCTYPE html>

<html>

<head>

<title>Print Text</title>

</head>

<body>

 

<script>

  document.write("Hello, World!");

</script>

 

</body>

</html>

This code will directly print "Hello, World!" on the web page

No comments:

Post a Comment