-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit.html
62 lines (53 loc) · 1.94 KB
/
edit.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
<!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>게시판</title>
<link rel = "stylesheet" href = "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 = "view.html" class = "on">수정</a>
<a href = "view.html">취소</a>
</div>
</div>
</div>
</body>
</html>