0
How to merge external CSS and JS files in HTML documents?
it's neassary.
3 Answers
+ 5
Suraj
CSS
Add this to the head of your HTML file:
<link rel="stylesheet" href=" css-file-path-goes-here ">
JavaScript
Add this to the end of body tag
<script src="JavaScript filefath.js" ></script>
0
CSS
Add this to the head of your HTML file:
<link rel="stylesheet" href="fileName.css">
JavaScript
Add this to the end of body tag
<script src="fileName.js" ></script>
0
Hello