Mar 26
External JavaScript and CSS Code
CSS, JavaScript 1 Comment »How do you make JavaScript and CSS work in external files? We’ll discuss why you want to put this code external to your page and how exactly you go about doing that.
External CSS example:
<link href=”/whatever.css” rel=”stylesheet” type=”text/css” media=”screen|print|all” />
External JavaScript example:
<script src=”/whtever.js” type=”text/javascript”></script>

