12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <!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: 47%;
- width: 234px;
- height: 41px;
- margin-left: -90px;
- top: 11px;
- background-position: center;
- background-image: url('./fatima_logo.gif');
- background-repeat: no-repeat;
- /* 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_fnu.apk">다운로드</a>
- </td>
- <td><a href="./apks/consent_viewer.apk">다운로드</a></td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </body>
- </html>
|