-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbookmarks.html
More file actions
38 lines (34 loc) · 1.24 KB
/
Copy pathbookmarks.html
File metadata and controls
38 lines (34 loc) · 1.24 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Bookmark HTMLizer / 书签HTML检索</title>
<link rel="stylesheet" href="bookmarks.css">
</head>
<body class="body-ai body-ai">
<div class="content">
<div class="container" id="bookmarks">
<div class="row" style="display:flex;flex-direction: row;">
<div class="sidebar">
<div class="content-sidebar fixed">
<dl id="bookmarks-mark">
</dl>
</div>
</div>
<div class="main">
<div class="search-fixed" style="margin-top:20px;">
<div class="search-box">
<input type="text" class="search-input" id="searchInput" placeholder="请输入搜索书签关键字">
<button class="search-btn" id="searchBox">
<i class="fa fa-search"></i>
</button>
</div>
</div>
<div id="bookmarks-contents"></div>
</div>
</div>
</div>
</div>
<script src="bookmarks.js"></script>
</body>
</html>