+ 1
How to add html + js
Plz help me
3 Respuestas
+ 1
you can add js to any html in 2 ways
External JavaScript
Internal Javascript
External Javascript
write your javascript code on seperate file with .js extension then you can add the js code
<script src="Your Js.js"></script>
internal Javascript
<script >
//your Js code goes here
</script>
0
Ok try it