I would like to combine external CSS & Java script on my website. Right now, there are 3 external CSS & 8 external Java script. So, How can I do it?
<script type="text/javascript" src="http://path_to_external_js"></script> <link rel="stylesheet" type="text/css" href="http://path_to_external_css" /> Code (markup):
You might want have a look at http://www.w3schools.com/CSS/css_howto.asp and http://www.w3schools.com/js/js_whereto.asp Also, no matter how many CSS and JS files you have, you just repeat the tag with different file names and it will work alright. Hope this too helps!