Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the documnet</title> <script src="example.js" defer></script> <noscript>Sorry, your browser doesn't support JavaScript!</noscript> </head> <body> <h1>Example</h1> <p>The "defer" attribute specifies that a script is executed when a page has finished the parsing. It is a boolean attribute.</p> </body> </html>