-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotice-main.html
More file actions
149 lines (146 loc) · 6.71 KB
/
Copy pathnotice-main.html
File metadata and controls
149 lines (146 loc) · 6.71 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>프로젝트 제목</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="notice-main.css">
</head>
<body>
<header>
<div class="top-box">
</div>
<nav>
<div class="logo-container">
<a href="main-page.html"><img src="images/crews-logo.png" alt="메인 로고"></a>
</div>
<ul>
<li onclick="location.href='main-page.html'"><a href="#">내 캘린더</a></li>
<li onclick="location.href='notice-main.html'"><a href="#">공지사항</a></li>
<li onclick="location.href='crew-search.html'"><a href="#">크루 찾기</a></li>
<li onclick="location.href='mypage.html'"><a href="#">나의 활동</a></li>
</ul>
</nav>
</header>
<main>
<aside>
<div class="sidebar">
<div class="user-info">
<img src="images/level-image.png" alt="1레벨 이미지">
<p class="user-name">삼육이</p>
<div class="diamond-info">
<img src="images/diamond-image.png" alt="보석">
<p class="image-number">: <p>126</p></p>
</div>
<div class="logout-button">
<button>로그아웃</button>
</div>
<div class="crew-list">
<h2>내 크루 목록</h2>
<ul>
<li><a href="crew-main.html">코딩크루</a></li>
<li><a href="crew-main.html">크루 2</a></li>
<li><a href="crew-main.html">크루 3</a></li>
</ul>
</div>
</div>
</div>
<div class="introduce-box"></div>
</aside>
<section>
<div class="notice-main">
<div class="information-bar">
<table>
<tr>
<th class="bar-content" width="100">번호</th>
<th class="bar-content" width="600">제목</th>
<th class="bar-content" width="200">작성자</th>
<th class="bar-content" width="200">조회수</th>
<th class="bar-content" width="200">작성일</th>
</tr>
</table>
</div>
<br>
<div class="list-div">
<table class="list-table">
<tr class="notice-list" onClick="location.href='notice-detail.html'">
<th width="100">23</th>
<th width="600">10/26일 정기점검</th>
<th width="200">관리자</th>
<th width="200">125</th>
<th width="200">2023.10.24</th>
</tr>
<tr class="notice-list">
<th width="100">22</th>
<th width="600">10/19일 정기점검</th>
<th width="200">관리자</th>
<th width="200">225</th>
<th width="200">2023.10.17</th>
</tr>
<tr class="notice-list">
<th width="100">21</th>
<th width="600">10/12일 정기점검</th>
<th width="200">관리자</th>
<th width="200">277</th>
<th width="200">2023.10.10</th>
</tr>
<tr class="notice-list">
<th width="100">20</th>
<th width="600">10/5일 정기점검</th>
<th width="200">관리자</th>
<th width="200">300</th>
<th width="200">2023.10.3</th>
</tr>
<tr class="notice-list">
<th width="100">19</th>
<th width="600">신규 크루원 공지 안내</th>
<th width="200">관리자</th>
<th width="200">325</th>
<th width="200">2023.10.1</th>
</tr>
<tr class="notice-list">
<th width="100">18</th>
<th width="600">9/28일 정기점검</th>
<th width="200">관리자</th>
<th width="200">367</th>
<th width="200">2023.9.26</th>
</tr>
<tr class="notice-list">
<th width="100">17</th>
<th width="600">9/21일 정기점검</th>
<th width="200">관리자</th>
<th width="200">402</th>
<th width="200">2023.9.19</th>
</tr>
<tr class="notice-list">
<th width="100">16</th>
<th width="600">9/14일 정기점검</th>
<th width="200">관리자</th>
<th width="200">438</th>
<th width="200">2023.9.12</th>
</tr>
<tr class="notice-list">
<th width="100">15</th>
<th width="600">9/7일 정기점검</th>
<th width="200">관리자</th>
<th width="200">446</th>
<th width="200">2023.9.5</th>
</tr>
<tr class="notice-list">
<th width="100">14</th>
<th width="600">신고시 주의사항 안내</th>
<th width="200">관리자</th>
<th width="200">762</th>
<th width="200">2023.9.4</th>
</tr>
</table>
<div class="page">
<p>< 1 2 3 ></p>
</div>
</div>
</div>
</section>
</main>
</body>
</html>