-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.html
83 lines (83 loc) · 2.45 KB
/
search.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
<html>
<head>
<link href="assets/css/search.css" rel="stylesheet" type="text/css">
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="assets/javascript/search.js"></script>
</head>
<body>
<div id="abc">
<a href="#A-header">A</a>
<a href="#B-header">B</a>
<a href="#C-header">C</a>
<a href="#D-header">D</a>
<a href="#E-header">E</a>
<a href="#F-header">F</a>
<a href="#G-header">G</a>
<a href="#H-header">H</a>
<a href="#I-header">I</a>
<a href="#J-header">J</a>
<a href="#K-header">K</a>
<a href="#L-header">L</a>
<a href="#M-header">M</a>
<a href="#N-header">N</a>
<a href="#O-header">O</a>
<a href="#P-header">P</a>
<a href="#Q-header">Q</a>
<a href="#R-header">R</a>
<a href="#S-header">S</a>
<a href="#T-header">T</a>
<a href="#U-header">U</a>
<a href="#V-header">V</a>
<a href="#W-header">W</a>
<a href="#X-header">X</a>
<a href="#Y-header">Y</a>
<a href="#Z-header">Z</a>
<a href="#number-header">#</a>
</div>
<div id="wrapper">
<dl id="scroller">
<dt id="A">A</dt>
<dd></dd>
<dd></dd>
<dd></dd>
<dd></dd>
<dd class="last"></dd>
<dt id="B">B</dt>
<dd></dd>
<dd></dd>
<dd></dd>
<dd class="last"></dd>
<dt id="C">C</dt>
<dd>Cccccc <strong>Cccccc</strong></dd>
<dd>Cccccc <strong>Cccccc</strong></dd>
<dd>Cccccc <strong>Cccccc</strong></dd>
<dd class="last">Cccccc <strong>Cccccc</strong></dd>
<dt id="D">D</dt>
<dd>Dddddd <strong>Dddddd</strong></dd>
<dd>Dddddd <strong>Dddddd</strong></dd>
<dd>Dddddd <strong>Dddddd</strong></dd>
<dd>Dddddd <strong>Dddddd</strong></dd>
<dd class="last">Dddddd <strong>Dddddd</strong></dd>
<dt id="E">E</dt>
<dd>Eeeeee <strong>Eeeeee</strong></dd>
<dd>Eeeeee <strong>Eeeeee</strong></dd>
<dd>Eeeeee <strong>Eeeeee</strong></dd>
<dd class="last">Eeeeee <strong>Eeeeee</strong></dd>
<dt id="L">L</dt>
<dd>Llllll <strong>Llllll</strong></dd>
<dd>Llllll <strong>Llllll</strong></dd>
<dd>Llllll <strong>Llllll</strong></dd>
<dt id="O">O</dt>
<dd>Oooooo <strong>Oooooo</strong></dd>
<dd>Oooooo <strong>Oooooo</strong></dd>
<dd>Oooooo <strong>Oooooo</strong></dd>
<dt id="W">W</dt>
<dd>Wwwwww <strong>Wwwwww</strong></dd>
<dd>Wwwwww <strong>Wwwwww</strong></dd>
<dd>Wwwwww <strong>Wwwwww</strong></dd>
<dd>Wwwwww <strong>Wwwwww</strong></dd>
</dl>
</div>
</body>
</html>