HTML CSS examples for HTML Tag:script
Executing a Script Asynchronously
Using the async Element
<!DOCTYPE html> <html> <head> <script async src="simple2.js"></script> </head> <body> <p> I like <code id="myId">HTML</code> and CSS. <!-- w ww . j av a 2 s . c om--> </p> <a href="http://java2s.com">Visit java2s.com</a> <a href="page2.html">Page 2</a> </body> </html>