index.html 1.0 KB

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