download.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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: 47%;
  21. width: 234px;
  22. height: 41px;
  23. margin-left: -90px;
  24. top: 11px;
  25. background-position: center;
  26. background-image: url('./fatima_logo.gif');
  27. background-repeat: no-repeat;
  28. /* background-size: 180px 40px; */
  29. }
  30. .downloadContainer .download {
  31. width: 100%;
  32. margin-left: auto;
  33. margin-right: auto;
  34. display: block;
  35. margin-top: 15px;
  36. }
  37. .downloadContainer table {
  38. width: 80%;
  39. margin: 0;
  40. background: #FFFFFF;
  41. border: 1px solid #333333;
  42. border-collapse: collapse;
  43. }
  44. .downloadContainer td,
  45. th {
  46. border-bottom: 1px solid #333333;
  47. padding: 6px 16px;
  48. text-align: center;
  49. }
  50. .downloadContainer th {
  51. background: #EEEEEE;
  52. }
  53. </style>
  54. </head>
  55. <body>
  56. <div class="downloadContainer">
  57. <!--로고”-->
  58. <div class="mainheader">
  59. <div class="toplogo"></div>
  60. </div>
  61. <!--다운로드-->
  62. <div class="download" align="center">
  63. <table>
  64. <thead>
  65. <tr>
  66. <th>앱</th>
  67. <th>뷰어</th>
  68. </tr>
  69. </thead>
  70. <tbody>
  71. <tr>
  72. <td>
  73. <a href="./apks/consent_fnu.apk">다운로드</a>
  74. </td>
  75. <td><a href="./apks/consent_viewer.apk">다운로드</a></td>
  76. </tr>
  77. </tbody>
  78. </table>
  79. </div>
  80. </div>
  81. </body>
  82. </html>