-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (33 loc) · 1.03 KB
/
index.html
File metadata and controls
39 lines (33 loc) · 1.03 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Team5</title>
<link rel="stylesheet" href="./src/styles/global.css" />
</head>
<body>
<aside>
<div class="sidebar-title">
<img src="./assets/Icon.svg" class="Icon" />
<h3>너드호소인들의 Notion</h3>
</div>
<div class="SearchContainer">
<input id="searchText" type="text" placeholder="검색기능" /><button id="searchBtn">⌕</button>
</div>
<div>
<span>개인 페이지</span>
<button data-action="add-root" title="루트 문서 추가" aria-label="루트 문서 추가">
+
</button>
</div>
<!-- 문서 트리 -->
<div class="doc-tree"></div>
</aside>
<main>
<input class="Title" type="text" placeholder="New page" />
<textarea class="EditorContainer" placeholder="여기에 내용을 작성하세요"></textarea>
</main>
<script type="module" src="./src/index.js"></script>
</body>
</html>