index.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
  5. <script src="js/myEvents.js"></script>
  6. <script>
  7. </script>
  8. <link rel="stylesheet" type="text/css" href="styles/grapheditor.css">
  9. </head>
  10. <body>
  11. <div class="topContainer">
  12. MODELING TOOL
  13. </div>
  14. <div class="sidebarContainer">
  15. <button id="load_nodeset" type="button">
  16. Load Nodeset file
  17. </button>
  18. <button id="delete_nodeset" type="button">
  19. Delete Nodeset file
  20. </button>
  21. <button id="export_model" type="button">
  22. Export new model
  23. </button>
  24. </div>
  25. <div class="addressSpaceContainer">
  26. <div class="aSTableStart">
  27. <table>
  28. <tbody>
  29. <tr>
  30. <td>
  31. <img class="nodeRoot" src="graphics/node.svg" height="100" width="100"></img>
  32. </td>
  33. </tr>
  34. </tbody>
  35. </table>
  36. </div>
  37. <div class="aSTableMain">
  38. <table>
  39. <tbody id="tree">
  40. </tbody>
  41. </table>
  42. </div>
  43. </section>
  44. </div>
  45. </body>
  46. </html>