123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- <link rel="stylesheet" href="../lib/bulma-0.2.3.css" />
- <!-- https://cdnjs.cloudflare.com/ajax/libs/bulma/0.2.3/css/bulma.css" -->
- <link rel="stylesheet" href="../styles.css" />
- <link rel="stylesheet" href="styles.css" />
- </head>
- <body>
- <nav>
- <h1><span class="index">11</span>Exercise 3: Bulma tabs</h1>
- <ul>
- <li><a href="../lesson10">Prev</a></li>
- <li><a href="../lesson12">Next</a></li>
- </ul>
- </nav>
- <div id="root" class="container">
- <tabs>
- <tab name="About us" :selected="true">
- <h1>Here is the content about us</h1>
- </tab>
- <tab name="About our culture">
- <h1>Here is the content about our culture</h1>
- </tab>
- <tab name="About our vision">
- <h1>Here is the content about our vision</h1>
- </tab>
- </tabs>
- </div>
- <script src="../lib/vue-2.1.3.js"></script>
- <script src="code.js"></script>
- </body>
- </html>
|