0
Add JavaScript to html
How to add JavaScript to HTML5 ? thanx
2 ответов
+ 4
<!--Of these two forms-->
<!--File in JS-->
<script type="text/javascript" src="Music.js"></script>
<!--Code inside HTML-->
<script type="text/javascript">
alert('Hy'); // Your source
</script>
0
thank you for the answer