<div class="container">
<div class="row">
<table class="table table-striped" style="text-align=center; border: 1px solid #dddddd">
<thead>
<tr>
<th style="backgroud-color: #eeeeee; text-align=center;">번호</th>
<th style="backgroud-color: #eeeeee; text-align=center;">제목</th>
<th style="backgroud-color: #eeeeee; text-align=center;">작성자</th>
<th style="backgroud-color: #eeeeee; text-align=center;">작성날짜</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>hello world</td>
<td>홍길동</td>
<td>2021-02-07</td>
</tbody>
</table>
<a href="write.jsp" class="btn btn-primary pull-right">글쓰기</a>
</div>
</div>
- 위 쪽 네비게이션 바는 메인페이지와 같이 만들어주고
- 아래에 게시판글 목록이 들어갈수 있는 테이블을 만들어준다.
- thead는 해당 게시판 글의 속성이 들어가고 tbody에는 그 속성에 맞는 내용이 들어간다.