-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboard.html
More file actions
32 lines (28 loc) · 945 Bytes
/
board.html
File metadata and controls
32 lines (28 loc) · 945 Bytes
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>게시판 | L.I.T.E</title>
<link rel="stylesheet" href="board.css" />
<script src="board.js" defer></script>
</head>
<body>
<button class="back-btn" onclick="goBack()">← 메인으로</button>
<header>
<h1>L.I.T.E</h1>
<p>경희고 학생 소통 공간</p>
</header>
<main>
<div id="board-container">
<div class="tabs">
<button class="tab active" onclick="filterBoard('all')">전체</button>
<button class="tab" onclick="filterBoard('notice')">공지</button>
<button class="tab" onclick="filterBoard('free')">자유</button>
</div>
<ul id="postList" class="post-list"></ul>
</div>
</main>
<button class="fab" onclick="writePost()">✏️</button>
</body>
</html>