1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!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/join.css" />
- </head>
- <body>
- <section id="app">
- <header>
- <div>
- <a class="left" href="/"><img src="../img/left-point.png" alt=""/></a>
- <h2>加入我们</h2>
- <a class="right" href=""><img src="../img/tools.png" alt=""/></a>
- </div>
- </header>
- <section class="join-us">
- <div><img src="../img/join_us.png" alt=""></div>
- <section><p>招聘邮箱:</p><span>hr@diisea.com</span></section>
- </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>
|