123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>대구가톨릭대학교병원</title>
- <style type="text/css">
- .downloadContainer {
- position: relative;
- }
- .downloadContainer .mainheader {
- top: 0;
- left: 0;
- width: 100%;
- height: 60px;
- background-color: #fff;
- box-shadow: inset 0 -1px 1px #a2a2a2;
- }
- .downloadContainer .toplogo {
- position: absolute;
- left: 50%;
- width: 180px;
- height: 41px;
- margin-left: -90px;
- top: 11px;
- background-position: center;
- background-image: url('./logo.jpg');
- /* background-size: 180px 40px; */
- }
- .downloadContainer .download {
- width: 100%;
- margin-left: auto;
- margin-right: auto;
- display: block;
- margin-top: 15px;
- }
- .downloadContainer table {
- width: 80%;
- margin: 0;
- background: #FFFFFF;
- border: 1px solid #333333;
- border-collapse: collapse;
- }
- .downloadContainer td,
- th {
- border-bottom: 1px solid #333333;
- padding: 6px 16px;
- text-align: center;
- }
- .downloadContainer th {
- background: #EEEEEE;
- }
- </style>
- </head>
- <body>
- <div class="downloadContainer">
- <!--로고-->
- <div class="mainheader">
- <div class="toplogo"></div>
- </div>
- <!--다운로드-->
- <div class="download" align="center">
- <table>
- <thead>
- <tr>
- <th>앱</th>
- <th>뷰어</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>
- <a href="./apks/consent_dcumc.apk">다운로드</a>
- </td>
- <td><a href="./apks/consent_viewer.apk">다운로드</a></td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </body>
- </html>
|