-
Notifications
You must be signed in to change notification settings - Fork 1
/
my_post.html
50 lines (47 loc) · 1.42 KB
/
my_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
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="../css/my_post.css" />
<title>손에 손 잡고</title>
</head>
<body>
<nav class="nav_bar">
<div class="back_btn">
<a href="./home_login.html"><img src="../img/arrow.png" alt="" /></a>
</div>
<div class="logo_btn">
<a href="./home_login.html"
><img src="../img/logo_2.png" alt="" class="logo_img"
/></a>
</div>
<div class="nav_menu">
<ul>
<li class="post_li">내가 쓴 게시물</li>
<li class="opacity_li">도움 해결하</li>
</ul>
</div>
<div class="nav_chat">
<a href="../html/chat.html"
><button class="chat_btn">채팅하기</button></a
>
</div>
<div class="nav_logout">
<img src="../img/logout.png" alt="" />
<a href="./index.html">로그아웃</a>
</div>
<div class="nav_mypage">
<img src="../img/mypage.png" alt="" />
<a href="../html/mypage.html">마이페이지</a>
</div>
</nav>
<hr />
<section class="container">
<div class="wrap_post"></div>
<div class="wrap_num"></div>
</section>
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
<script src="../js/my_post.js"></script>
</body>
</html>