0
Can somebody please help, got some confuion on a school project :/ SUBJECT : WEBDESIGN
Using HTML (I'm learning JS at the same time, files don't seem to be linked to each other very well
2 Respuestas
0
In your HTML file you need to link the JavaScript file, but typically both should be in the same folder (atleast for your purposes)
If you have a javascript file in thesame folder as your HTML file, you can link them together using something like this
<script src="javascriptFile.js"></script>
0
Thank you very much. I forgot to say on my school project I'm just using basic html and not implementing any Javascript yet.