-
Notifications
You must be signed in to change notification settings - Fork 0
/
study_board_text.html
76 lines (69 loc) · 2.07 KB
/
study_board_text.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SemtleWeb</title>
<link rel="stylesheet" href="css/style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;500;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://unpkg.com/swiper@7/swiper-bundle.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
/>
<script>
function getfreeboardCheckboxValue(event) {
let freeboard_result = "";
if (event.target.checked) {
freeboard_result = event.target.value;
}
}
</script>
</head>
<body>
<header>
<a href="javascript:history.back();" id="header-before"
><i class="fas fa-times"></i
></a>
<nav class="navbar">
<a href="notice.html">공지사항</a>
<a href="board.html">자유게시판</a>
<a href="study.html">스터디룸</a>
<a href="book.html">책 대여</a>
<a href="#">공모전</a>
</nav>
<span id="header-name">글쓰기</span>
<a href=""></a>
</header>
<section class="board_text">
<div class="board_textbox">
<div class="board_text-input">
<form
action="#"
name="freeboard_text"
accept-charset="utf-8"
method="#"
>
<textarea
id="board_write"
placeholder="내용을 입력해주세요"
></textarea>
<div class="board_append">
<input type="file" name="filename" />
<input type="submit" id="write_submit" value="완료" />
</div>
</form>
</div>
</div>
</section>
</body>
<script src="https://unpkg.com/swiper@7/swiper-bundle.min.js"></script>
<script src="js/script.js" defer></script>
</html>