| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!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>
- <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>
|