123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <!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/robot.css" />
- </head>
- <body>
- <section id="app">
- <header>
- <div>
- <a class="left" href="/"><img src="../img/search.png" alt=""/></a>
- <h2>机器人</h2>
- <a class="right" href=""><img src="../img/tools.png" alt=""/></a>
- </div>
- </header>
- <section class="content">
- <img src="../img/robot_1.png" alt="">
- <div class="content-dis">
- <h5>DIISEA 系列</h5>
- <h3>智能洗地机器人</h3>
- <a href="">即将预售>></a>
- </div>
- </section>
-
- </section>
- </body>
- <script type="text/javascript">
- new Vue({
- el: "#app",
- data() {
- return {};
- },
- mounted() {},
- methods: {}
- });
- </script>
- </html>
|