0
How to link between html ,css and java script
3 Answers
+ 7
If you want an external script, you must create a separate JS file then include it in your HTML by putting <script src="<yourfilename>.js"> in your HTML. It is recommended to put your <script> tag above the </head> tag. You can also include CSS in your HTML using <style> tag inside <head> tag.
+ 3
Thanks a lot
0
External CSS:
<link rel = "stylesheets" type = "text/css" href = "name.css">
External JS:
<script src = "name.js">
</script>