| 123456789101112131415161718192021222324252627 | <!DOCTYPE html><html lang="en">  <head>    <meta charset="UTF-8">    <title>Title</title>    <link rel="stylesheet" href="../styles.css" />    <link rel="stylesheet" href="styles.css" />  </head>  <body>    <nav>      <h1><span class="index">16</span>Webpack and Vue-cli</h1>      <ul>        <li><a href="../lesson15">Prev</a></li>        <li><a href="../lesson17">Next</a></li>      </ul>    </nav>    <h1>Go to <a href="hello-vue/index.html">App</a></h1>    <p>Be sure to run <code>yarn ; yarn dev</code> in the      <code>hello-vue</code> directory to start the webpack dev server.</p>    <div id="root" class="container">    </div>    <script src="../lib/vue-2.1.3.js"></script>    <script src="code.js"></script>  </body></html>
 |