Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
<!-- Old approach: scripts at end of body --> <body> <p>Content here</p> <script src="app.js"></script> </body> <!-- Modern approach: defer in head --> <head> <script src="app.js" defer></script> </head>
Result
Open