Adding Javascript to the page
There are 2 ways to add your javascript
Inline Javascript or use script tag
External Javascript
Inline Javascript
In internal js, we use a script tag and inside the script tag, we write js code.
<script>
alert("hello world");
</script>
Extern...
kara14.hashnode.dev1 min read