-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_post.html
45 lines (43 loc) · 1.41 KB
/
create_post.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
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="create_post.css">
<script>
</script>
<title>게시글 작성</title>
</head>
<body>
<header class="header">
<img class= "navigate_icon" src="/img/navigate_before.svg"></img>
<p class="header_title">아무 말 대잔치</p>
<img class="profile_img" src="/img/profile_img.jpg"/>
</header>
<section class="wrap">
<hr class="horizontal-rule"/>
<div >
<p class="category">게시글 작성</p>
</div>
<div class="title_category">
<p class="title">제목*</p>
<form class="title_input">제목을 입력해주세요.(최대 26글자)</form>
</div>
<div class="content_category">
<p class="content">
내용*</p>
<form class="content_input">
입력해주세요.
</form>
</div>
<div class="img_category">
<p class="img_title">이미지</p>
<div class="file_category">
<button class="file_btn">파일 선택</button>
<div><p class="file_txt">파일을 선택해주세요.</p></div>
</div>
</div>
<button class="complete">완료</button>
</section>
</body>
</html>