download.html 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>경북대학교병원</title>
  6. <style type="text/css">
  7. .downloadContainer {
  8. position: relative;
  9. }
  10. .downloadContainer .mainheader {
  11. top: 0;
  12. left: 0;
  13. width: 100%;
  14. height: 60px;
  15. background-color: #fff;
  16. box-shadow: inset 0 -1px 1px #a2a2a2;
  17. }
  18. .downloadContainer .toplogo {
  19. position: absolute;
  20. left: 50%;
  21. width: 180px;
  22. height: 41px;
  23. margin-left: -90px;
  24. top: 11px;
  25. background-position: center;
  26. background-image: url("./logo.jpg");
  27. /* background-size: 180px 40px; */
  28. }
  29. .downloadContainer .download {
  30. width: 100%;
  31. margin-left: auto;
  32. margin-right: auto;
  33. display: block;
  34. margin-top: 15px;
  35. }
  36. .downloadContainer table {
  37. width: 80%;
  38. margin: 0;
  39. background: #ffffff;
  40. border: 1px solid #333333;
  41. border-collapse: collapse;
  42. }
  43. .downloadContainer td,
  44. th {
  45. border-bottom: 1px solid #333333;
  46. padding: 6px 16px;
  47. text-align: center;
  48. }
  49. .downloadContainer th {
  50. background: #eeeeee;
  51. }
  52. </style>
  53. </head>
  54. <body>
  55. <div class="downloadContainer">
  56. <!--로고”-->
  57. <div class="mainheader">
  58. <div class="toplogo"></div>
  59. </div>
  60. <!--다운로드-->
  61. <div class="download" align="center">
  62. <table>
  63. <thead>
  64. <tr>
  65. <th>테스트 네이티브 앱</th>
  66. </tr>
  67. </thead>
  68. <tbody>
  69. <tr>
  70. <td>
  71. <a href="./apks/consent_knuh.apk">다운로드</a>
  72. </td>
  73. </tr>
  74. </tbody>
  75. </table>
  76. </div>
  77. </div>
  78. </body>
  79. </html>