index.html 438 B

12345678910111213141516171819202122232425262728
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width" />
  6. <title>requirejs</title>
  7. <style>
  8. .draggie {
  9. width: 100px;
  10. height: 100px;
  11. background: #09F;
  12. }
  13. </style>
  14. <script data-main="main" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.17/require.js"></script>
  15. </head>
  16. <body>
  17. <h1>requirejs</h1>
  18. <div class="draggie"></div>
  19. </body>
  20. </html>