1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <title>水滴科技有限公司</title>
- <script type="text/javascript" src="../js/vue.min.js"></script>
- <link rel="stylesheet" href="../css/bootstrap.min.css" />
- <link rel="stylesheet" href="../css/header.css" />
- <link rel="stylesheet" href="../css/normalize.css" />
- <link rel="stylesheet" href="../css/kind.css">
- </head>
- <body>
- <section id="app">
- <header>
- <div>
- <a class="left" href="/"><img src="../img/left-point.png" alt=""/></a>
- <a href="javascript:;"><img src="../img/title.png" alt=""/></a>
- <a class="right" href="/"><img src="../img/tools.png" alt=""/></a>
- </div>
- </header>
- <section class="list">
- <ul>
- <li>
- <a href="/">首页</a>
- </li>
- <li>
- <a href="./handheld.html">手持式</a>
- </li>
- <li>
- <a href="./robot.html">机器人</a>
- </li>
- <li>
- <a href="./server.html">服务</a>
- </li>
- <li>
- <a href="./callme.html">合作</a>
- </li>
- </ul>
- </section>
- <!-- <footer>
- <section class="callme">
- <div class="telphone">
- <p>全国统一服务热线:</p>
- <span>电话:400-812-0098</span>
- </div>
- <div class="online">
- <img src="../img/call_03.jpg" alt="" />
- </div>
- </section>
- <section class="copy">
- <span>鄂ICP备19009716号 Copyright@2019 滴水科技版权所有</span>
- </section>
- </footer> -->
- </section>
- </body>
- <script type="text/javascript">
- new Vue({
- el: "#app",
- data() {
- return {};
- },
- mounted() {},
- methods: {}
- });
- </script>
- </html>
|