forked from fushenghua/GetHosp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (96 loc) · 3.31 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<title>GetHosp</title>
<!-- Bootstrap core CSS -->
<link href="http://cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
<link href="css/search.css" rel="stylesheet">
<!-- js -->
<!-- <script src="http://cdn.bootcss.com/jquery/2.2.1/jquery.js"></script>
<script src="http://cdn.bootcss.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> -->
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="//cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="//cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<style>
.jumbotron {
text-align: center;
background-color: #cf4646;
color: #fff;
}
form {
position: relative;
text-align: center;
background-color: #27AE60;
color: #fff;
margin-bottom: 0;
}
.search {
border: 2px solid #ffffff;
-webkit-box-shadow: none;
box-shadow: none;
font-size: 16px;
padding: 13px 30px;
border-radius: 0;
height: auto;
text-align: center;
}
.form-group {
position: relative;
margin-top: 40px;
}
.footer {
margin-top: 60px;
text-align: center;
color: #aaa;
}
</style>
</head>
<body>
<header class="jumbotron">
<h1>GetHosp</h1>
</br>
<p class="lead">一个有情怀的GetHosp,让搜索更简单!</p>
<div class="container">
</br>
<form class="" role="search">
<div class="form-group">
<input type="text" class="form-control search clearable" placeholder="搜索医院,地区,例如:北京" id="search-content"> <i class="fa x fa-search onX"></i>
</div>
</form>
</div>
</header>
<div class="container">
<div class="row">
<div class="col-md-6">
<h2>开源使用</h2>
<p>GetHosp 代码托管在Github上,包括数据信息。</p>
</div>
<div class="col-md-6">
<h2>公平公正</h2>
<p>保证信息的绝对公开、透明,拒绝删帖、煽动、不正当竞争等一切行为</p>
</div>
</div>
</div><!-- /.container -->
<footer class="footer">
<div class="container">
<p>© GetHosp 2016</p>
</div>
</footer>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="http://cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script>
<script src="http://cdn.bootcss.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="js/search.js"></script>
<script src="js/bootstrap3-typeahead.min.js"></script>
</body>
</html>