-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
53 lines (53 loc) · 1.77 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
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,Chrome=1">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<script src="//cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script>
<link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap.min.css"></link>
<link rel="stylesheet" href="res/main.css">
<title>A岛饼干侦探</title>
</head>
<body>
<div class="jumbotron">
<div class="container">
<h1>成为一名侦探吧!</h1>
</div>
</div>
<div class="container">
<div class="search-bar">
<a href="##" class="btn-search"><span class="glyphicon glyphicon-search"></span></a>
<div class="input-group">
<span class="input-group-addon">ID</span>
<input type="text" class="form-control" placeholder="输入犯人ID">
</div>
<div class="radio">
<label>
<input type="radio" name="use" value="360" checked>
使用360搜索引擎,更稳定。
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="use" value="google">
使用Google搜索引擎,信息更多。(api限制每天最多搜索100次,即100页数据)
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="use" value="all">
使用以上所有搜索引擎,不稳定,也不保证能搜到东西。
</label>
</div>
</div>
<table class="table table-hover table-result">
<caption>请输入ID以开始搜索。</caption>
<thead><tr><th>串号</th><th>打开</th></tr></thead>
<tbody></tbody>
</table>
</div>
<script src="//cdn.bootcss.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="res/common.js"></script>
</body>
</html>