1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <!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>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>
- <a href="./apks/consent_knuh.apk">다운로드</a>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </body>
- </html>
|