0% found this document useful (0 votes)
47 views

Javascript

This HTML document contains a <script> tag that uses JavaScript to write "Hello" to the document. The <script> tag type is specified as text/javascript. The document has a title of "Javascript" and contains a single <script> element within the <body> to output the text "Hello".

Uploaded by

Art Look
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
47 views

Javascript

This HTML document contains a <script> tag that uses JavaScript to write "Hello" to the document. The <script> tag type is specified as text/javascript. The document has a title of "Javascript" and contains a single <script> element within the <body> to output the text "Hello".

Uploaded by

Art Look
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

<html> <head> <title>Javascript</title> </head> <body>

<script type="text/javascript"> document.write(Hello); </script>

</body> </html>

You might also like