-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (57 loc) · 1.91 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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/scripts.js"></script>
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen" />
<link href="css/style.css" rel="stylesheet" />
</head>
<body>
<div class="main container-fluid">
<div class="row-fluid">
<div class="span12">
<form class="search" id="search">
<input name="term" id="term" placeholder="Search any Chinese character..." />
<!-- <button id="submit-search">Go</button> -->
<div class="options">
<!-- I think there's an issue here -->
<select name="chartype">
<option value="simplified">Simplified</option>
<option value="traditional">Traditional</option>
</select>
<span class="category">Character Position</span>
<label class="checkbox">
<input type="checkbox" value="first">First
</label>
<label class="checkbox">
<input type="checkbox" value="contains">Contains
</label>
<span class="extra-controls">
<button class="btn-mini btn">All</button>
<button class="btn-mini btn">None</button>
</span>
<span class="category">Term length</span>
<label class="checkbox">
<input type="checkbox" value="2">2
</label>
<label class="checkbox">
<input type="checkbox" value="3">3
</label>
<label class="checkbox">
<input type="checkbox" value="4">4
</label>
<label class="checkbox">
<input type="checkbox" value="5+">5+
</label>
<span class="extra-controls">
<button class="btn-mini btn">All</button>
<button class="btn-mini btn">None</button>
</span>
</div>
</form>
<div id="result"></div>
</div>
</div>
</body>
</html>