-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnoticeEdit.html
69 lines (69 loc) · 1.94 KB
/
noticeEdit.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>공지사항</title>
<link rel="stylesheet" href="css/css.css" />
</head>
<body>
<div class="board_wrap">
<div class="board_title">
<strong>공지사항</strong>
<p>공지사항을 빠르고 정확하게 안내해드립니다.</p>
</div>
<div class="board_write_wrap">
<div class="board_write">
<div class="title">
<dl>
<dt>제목</dt>
<dd>
<input
type="text"
placeholder="제목 입력"
value="글 제목이 들어갑니다"
/>
</dd>
</dl>
</div>
<div class="info">
<dl>
<dt>글쓴이</dt>
<dd>
<input type="text" placeholder="글쓴이 입력" value="김이름" />
</dd>
</dl>
<dl>
<dt>비밀번호</dt>
<dd>
<input
type="password"
placeholder="비밀번호 입력"
value="1234"
/>
</dd>
</dl>
</div>
<div class="cont">
<textarea placeholder="내용 입력">
글 내용이 들어갑니다.
글 내용이 들어갑니다.
글 내용이 들어갑니다.
글 내용이 들어갑니다.
글 내용이 들어갑니다.
글 내용이 들어갑니다.
글 내용이 들어갑니다.
글 내용이 들어갑니다.</textarea
>
</div>
</div>
<div class="bt_wrap">
<a href="./notice.html" class="on">완료</a>
<!--변경 사항 반영-->
<a href="./notice.html">취소</a>
<!-- 변겨 취소-->
</div>
</div>
</div>
</body>
</html>