-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (42 loc) · 1.58 KB
/
index.html
File metadata and controls
47 lines (42 loc) · 1.58 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
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BK专属笔记</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>BK专属笔记</h1>
<p>一个简单易用的在线笔记工具</p>
</header>
<main>
<div class="controls">
<button id="newNote">新建笔记</button>
<input type="text" id="searchNotes" placeholder="搜索笔记...">
<input type="file" id="importNotes" accept=".json,.zip" style="display: none;">
<button id="importNotesBtn">导入笔记</button>
</div>
<div class="controls">
<div id="tagsCloud">
<strong>标签云: </strong>
<span id="tagsList">加载中...</span>
</div>
</div>
<div id="notesContainer">
<!-- 笔记将在这里动态显示 -->
<div class="note">
<h3>欢迎使用 BK专属笔记</h3>
<p>这是一个功能丰富的笔记应用。点击"新建笔记"按钮开始记录你的想法,支持插入图片、代码、GIF和视频链接。</p>
<small>创建时间: <span class="date">2026-01-27</span></small>
</div>
</div>
</main>
<footer>
<p>© 2026 BK专属笔记. 所有权利保留.</p>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.10.1/jszip.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>