| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <!DOCTYPE html>
- <html lang="zh">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta http-equiv="X-UA-Compatible" content="ie=edge" />
- <title>首页</title>
- <!--[if lt IE 10]>
- <script>
- window.location.href = './ieTips.html';
- </script>
- <![endif]-->
- <link rel="stylesheet" href="css/animate.min.css" />
- <link rel="stylesheet" href="css/bootstrap.min.css" />
- <style>
- .home_page {
- width: 298px;
- margin: 20% auto 0 auto;
- text-align: center;
- color: #333333;
- }
-
- .home_page img {
- width: 298px;
- height: 94px;
- }
-
- .home_page h1 {
- font-size: 14px;
- margin-top: 26px;
- margin-bottom: 18px;
- }
-
- .home_page p {
- font-size: 12px;
- padding: 0;
- margin: 0;
- }
-
- .home_page p a {
- color: #249fea;
- }
- </style>
- </head>
- <body>
- <div class="container animated fadeInRight">
- <div class="home_page">
- <img src="img/hom_page_img.png" alt="图片" />
- <h1>郑州市第一人民医院</h1>
- <!--<p>
- 联系我们请咨询
- <a href="javascript:;">在线客服</a>
- 或致电
- <a href="javascript:;">400-555-9999</a>
- </p>-->
- </div>
- </div>
- </body>
- </html>
|