UNPKG

lockandload

Version:

Minimalist AMD-compliant Javascript and CSS loader

24 lines (23 loc) 931 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <!-- The following <script> *must* stay at the top --> <script src="node_modules/lockandload/lockandload_master.js"></script> <!-- All high priority Javascript files go here --> <script importance="high" src="main.js" async></script> <meta name="viewport" content="width=device-width,initial-scale=1" /> <!-- All high priority CSS files go here --> <link rel="stylesheet" href="css/main.css" /> <title>Lock and load</title> <meta name="description" value="Minimalist AMD-compliant Javascript and CSS loader" /> <!-- This is where the you put all the other tags that go into <head> --> <script src="node_modules/lockandload/lockandload_headready.js"></script> <!-- The preceding <script> *must* stay at the end of the <head> --> </head> <body> <h1>Minimalist AMD-compliant Javascript and CSS loader</h1> <p>Your glorious content</p> </body> </html>