index.html 775 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title> TechREC </title>
  5. <link rel="stylesheet" type="text/css" href="css/style.css">
  6. <script src="js/jquery-1.9.1.min.js"></script>
  7. <script type="text/javascript" src="js/reclibrary.js"></script>
  8. <script>
  9. $(document).ready(function(){
  10. $("#newlink").click( function(){
  11. rec_new();
  12. });
  13. //rec_active();
  14. rec_new();
  15. });
  16. </script>
  17. </head>
  18. <body>
  19. <div id="pagecontainer">
  20. <h1> techr*c </h1>
  21. <h2>
  22. <a href="#" id="newlink">+ nuova registrazione</a> <br />
  23. <a href="tempo.html"> macchina del tempo</a>
  24. </h2>
  25. <div id="buttonscontainer"> </div>
  26. <div id="addnewrecarea"> </div>
  27. </div>
  28. <div id="footer">
  29. techbl*c
  30. </div>
  31. </body>
  32. </html>