How do you reference an external javascript file?

  • Thread starter Thread starter Henry Stock
  • Start date Start date
H

Henry Stock

<link href="styles.css" rel="stylesheet" type="text/css" />

If this is a link to an external style sheet then what would a link to an
external javascript file look like?
 
Henry Stock said:
<link href="styles.css" rel="stylesheet" type="text/css" />

If this is a link to an external style sheet then what would a link to an
external javascript file look like?

<script type="text/javascript" src="scripts/external.js"></script>
 
Back
Top