download.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. <th>뷰어</th>
  67. </tr>
  68. </thead>
  69. <tbody>
  70. <tr>
  71. <td>
  72. <a href="./apks/consent_dcumc.apk">다운로드</a>
  73. </td>
  74. <td><a href="./apks/consent_viewer.apk">다운로드</a></td>
  75. </tr>
  76. </tbody>
  77. </table>
  78. </div>
  79. </div>
  80. </body>
  81. </html>