Skip to content

Instantly share code, notes, and snippets.

@arunrreddy
Created June 9, 2020 06:18
Show Gist options
  • Select an option

  • Save arunrreddy/d669d9cb115972c784f6d6040b093db2 to your computer and use it in GitHub Desktop.

Select an option

Save arunrreddy/d669d9cb115972c784f6d6040b093db2 to your computer and use it in GitHub Desktop.
BJS Intro - Scripts almost always are just before the end of the body tag
<html>
<head>
<title>My first website</title>
</head>
<body>
<header></header>
<main></main>
<footer></footer>
<script src="myscript1.js"></script>
<script src="myscript2.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment