index.html 597 B

12345678910111213141516171819202122232425262728
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Notes</title>
  6. <link rel="stylesheet" href="ext-2.0.2/resources/css/ext-all.css">
  7. <script src="ext-2.0.2/adapter/jquery/jquery.js"></script>
  8. <script src="ext-2.0.2/adapter/jquery/ext-jquery-adapter.js"></script>
  9. <script src="ext-2.0.2/ext-all-debug.js"></script>
  10. <script>
  11. var viewport = new Ext.Viewport({id: 'viewport', layout: 'fit'});
  12. </script>
  13. <script src="notes.js"></script>
  14. </head>
  15. <body>
  16. <div id="notes-app">
  17. </div>
  18. <script>
  19. runNotesApp();
  20. </script>
  21. </body>
  22. </html>