<script> Tag in HTML 5

In this articles I am going to explain about script tag in HTML 5
  • 2058

Definition

The HTML <script> tag is used for declaring a script within your HTML documents.

Support browser in <Script> tag.

Chrome, Firefox, Opera, Internet Explorer 9 and Safari.

Lets take an example of <Script> tag

<html>
<body>
    <script type="text/javascript">
        document.write("Hello India")
    </script>
</body>
</html>

Output

Clipboard01.jpg
Further Readings

You may also read more about HTML5 here

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.