kind.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1" />
  7. <title>水滴科技有限公司</title>
  8. <script type="text/javascript" src="../js/vue.min.js"></script>
  9. <link rel="stylesheet" href="../css/bootstrap.min.css" />
  10. <link rel="stylesheet" href="../css/header.css" />
  11. <link rel="stylesheet" href="../css/normalize.css" />
  12. <link rel="stylesheet" href="../css/kind.css">
  13. </head>
  14. <body>
  15. <section id="app">
  16. <header>
  17. <div>
  18. <a class="left" href="/"><img src="../img/left-point.png" alt=""/></a>
  19. <a href="javascript:;"><img src="../img/title.png" alt=""/></a>
  20. <a class="right" href="/"><img src="../img/tools.png" alt=""/></a>
  21. </div>
  22. </header>
  23. <section class="list">
  24. <ul>
  25. <li>
  26. <a href="/">首页</a>
  27. </li>
  28. <li>
  29. <a href="./handheld.html">手持式</a>
  30. </li>
  31. <li>
  32. <a href="./robot.html">机器人</a>
  33. </li>
  34. <li>
  35. <a href="./server.html">服务</a>
  36. </li>
  37. <li>
  38. <a href="./callme.html">合作</a>
  39. </li>
  40. </ul>
  41. </section>
  42. <!-- <footer>
  43. <section class="callme">
  44. <div class="telphone">
  45. <p>全国统一服务热线:</p>
  46. <span>电话:400-812-0098</span>
  47. </div>
  48. <div class="online">
  49. <img src="../img/call_03.jpg" alt="" />
  50. </div>
  51. </section>
  52. <section class="copy">
  53. <span>鄂ICP备19009716号 Copyright@2019 滴水科技版权所有</span>
  54. </section>
  55. </footer> -->
  56. </section>
  57. </body>
  58. <script type="text/javascript">
  59. new Vue({
  60. el: "#app",
  61. data() {
  62. return {};
  63. },
  64. mounted() {},
  65. methods: {}
  66. });
  67. </script>
  68. </html>