index_splash.html 821 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html>
  3. <!--
  4. Copyright 2010 The Closure Library Authors. All Rights Reserved.
  5. Use of this source code is governed by the Apache License, Version 2.0.
  6. See the COPYING file for details.
  7. -->
  8. <head>
  9. <title>Closure Demos</title>
  10. <link rel="stylesheet" type="text/css" href="css/demo.css">
  11. <script>
  12. if (window == top) {
  13. location = 'index.html'; // HTML with the frameset
  14. }
  15. </script>
  16. </head>
  17. <body>
  18. <h1>Welcome to Closure!</h1>
  19. <p>Use the tree in the navigation pane to view Closure demos.</p>
  20. <br>
  21. <h2><span style="color:#800;">New!</span> Common UI Controls</h2>
  22. <p>Check out these widgets by clicking on the demo links on the left:</p>
  23. <img style="margin:10px;border:1px solid #888;padding:0;"
  24. alt="Common UI controls" src="../images/ui_controls.jpg">
  25. </body>
  26. </html>