join.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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/join.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. <h2>加入我们</h2>
  20. <a class="right" href=""><img src="../img/tools.png" alt=""/></a>
  21. </div>
  22. </header>
  23. <section class="join-us">
  24. <div><img src="../img/join_us.png" alt=""></div>
  25. <section><p>招聘邮箱:</p><span>hr@diisea.com</span></section>
  26. </section>
  27. <!-- <footer>
  28. <section class="callme">
  29. <div class="telphone">
  30. <p>全国统一服务热线:</p>
  31. <span>电话:400-812-0098</span>
  32. </div>
  33. <div class="online">
  34. <img src="../img/call_03.jpg" alt="" />
  35. </div>
  36. </section>
  37. <section class="copy">
  38. <span>鄂ICP备19009716号 Copyright@2019 滴水科技版权所有</span>
  39. </section>
  40. </footer> -->
  41. </section>
  42. </body>
  43. <script type="text/javascript">
  44. new Vue({
  45. el: "#app",
  46. data() {
  47. return {};
  48. },
  49. mounted() {},
  50. methods: {}
  51. });
  52. </script>
  53. </html>