/src/simple/index.html

http://github.com/hhughes/ocaml-frui · HTML · 26 lines · 26 code · 0 blank · 0 comment · 0 complexity · fd64fd58270c68b4eed99ef194cdc999 MD5 · raw file

  1. <html>
  2. <head>
  3. <style type="text/css">
  4. div#main {
  5. position: absolute;
  6. left: 5px;
  7. top: 36px;
  8. right: 5px;
  9. bottom: 5px;
  10. border: solid black 1px;
  11. }
  12. div.datum {
  13. position: absolute;
  14. width: 5px;
  15. height: 5px;
  16. border: solid black 1px;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <button id="load" type="button">Load</button>
  22. <div id="main"></div>
  23. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
  24. <script src="./simple.js"></script>
  25. </body>
  26. </html>