index.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.2.3/css/bulma.css" />
  7. <link rel="stylesheet" href="../styles.css" />
  8. <link rel="stylesheet" href="styles.css" />
  9. </head>
  10. <body>
  11. <nav>
  12. <h1><span class="index">11</span>Exercise 3: Bulma tabs</h1>
  13. <ul>
  14. <li><a href="../lesson10">Prev</a></li>
  15. <li><a href="../lesson12">Next</a></li>
  16. </ul>
  17. </nav>
  18. <div id="root" class="container">
  19. <tabs>
  20. <tab name="About us" :selected="true">
  21. <h1>Here is the content about us</h1>
  22. </tab>
  23. <tab name="About our culture">
  24. <h1>Here is the content about our culture</h1>
  25. </tab>
  26. <tab name="About our vision">
  27. <h1>Here is the content about our vision</h1>
  28. </tab>
  29. </tabs>
  30. </div>
  31. <script src="../lib/vue-2.1.3.js"></script>
  32. <script src="code.js"></script>
  33. </body>
  34. </html>