Created
August 1, 2024 06:50
-
-
Save BiosBoy/d8005b4d76f4858a8f88414c896b0ef5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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