-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcommunity.html
121 lines (115 loc) · 3.78 KB
/
community.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<link rel="stylesheet" type="text/css" href="bootstrap.css" />
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>space-in</title>
<link rel="stylesheet" href="css/bootstrap.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
<link rel="stylesheet" href="./css/community.css" />
</head>
<body>
<div class="logo-container">
<span class="logo-text"><a href="./index.html">Space-in</a></span>
</div>
<div class="container">
<div class="nav-block">
<a href="#" class="btn btn-primary btn-main">메인</a>
<a href="#" class="btn btn-primary btn-board">게시판</a>
</div>
<form class="form-inline text-right">
<div class="form-group">
<input
type="text"
class="form-control"
placeholder="검색어를 입력하세요"
/>
</div>
<button
type="submit"
class="btn btn-primary"
style="background-color: #495b73; border: none"
>
검색
</button>
</form>
<table class="table table-hover notice-table">
<thead>
<tr>
<th>번호</th>
<th>제목</th>
<th>작성자</th>
<th>날짜</th>
<th>조회수</th>
</tr>
</thead>
<tbody>
<tr class="notice-row" style="background-color: #f8efee">
<td style="color: red; font-weight: bold">공지사항</td>
<td style="color: red; font-weight: bold">
스터디 메이트 게시판 이용규칙
</td>
<td style="color: red; font-weight: bold">관리자</td>
<td style="color: red; font-weight: bold">2023.05.01</td>
<td style="color: red; font-weight: bold">320</td>
</tr>
<tr class="notice-row" style="background-color: #f8efee">
<td style="color: red; font-weight: bold">공지사항</td>
<td style="color: red; font-weight: bold">광고성 게시글 차단</td>
<td style="color: red; font-weight: bold">관리자</td>
<td style="color: red; font-weight: bold">2023.05.02</td>
<td style="color: red; font-weight: bold">311</td>
</tr>
<tr>
<td>165</td>
<td><a href="./write.html">스터디 메이트 구합니다</a></td>
<td>홍길동</td>
<td>2023.05.05</td>
<td>7</td>
</tr>
<tr>
<td>164</td>
<td>용인 스터디룸 2명</td>
<td>박모씨</td>
<td>2023.05.10</td>
<td>22</td>
</tr>
<tr>
<td>163</td>
<td>강남대역 근처 스터디룸 인원 구해여</td>
<td>뚱이</td>
<td>2023.05.17</td>
<td>3</td>
</tr>
<tr>
<td>162</td>
<td>어디가 좋을까요</td>
<td>김뫄뫄</td>
<td>2023.05.20</td>
<td>20</td>
</tr>
</tbody>
</table>
<hr />
<a class="btn btn-default pull-right" href="./findStudyMate.html"
>글쓰기</a
>
<div class="text-center">
<ul class="pagination">
<li><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">5</a></li>
<li><a href="#" aria-label="Next">다음</a></li>
</ul>
</div>
</div>
<script src="js/jquery-3.1.1.js"></script>
<script src="js/bootstrap.js"></script>
</body>
</html>