JavaScript Implementation tutorial

 <!DOCTYPE html>

<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Implementation JavaScript</title>
    <script src="js/test.js"></script>
    <!--<script>
        document.write("Hello World, ");
        document.write("Hello from Hello World, ");
    </script>-->
</head>

<body>
    <h1>Hello</h1>
    <script>
        document.write("Hey!! I am from body");
    </script>
</body>

</html>




Below File is js/test.js File
document.write("Hey!! I am from js folder and test.js file of JavaScript");





Comments

Popular posts from this blog

Generators tutorial in Advance JavaScript

Document Object Module DOM querySelector and querySelectorAll tutorial in JavaScript

Find Even and Odd Numbers with Loops tutorial in JavaScript