Skip to content

Instantly share code, notes, and snippets.

@BiosBoy
Created August 1, 2024 06:50
Show Gist options
  • Select an option

  • Save BiosBoy/d8005b4d76f4858a8f88414c896b0ef5 to your computer and use it in GitHub Desktop.

Select an option

Save BiosBoy/d8005b4d76f4858a8f88414c896b0ef5 to your computer and use it in GitHub Desktop.
<script async src="analytics.js"></script>
<script defer src="main.js"></script>
<!-- Correct usage -->
<script async src="https://example.com/ads.js"></script>
<script defer src="app.js"></script>
<script type="module" src="main.js"></script>
<script>
// Inline script
console.log('Inline script executed');
</script>
<!-- Inline script at the end of body -->
<body>
<!-- Content -->
<script>
console.log('Inline script executed');
</script>
</body>
<script type="module" src="main.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment