thead / tbody
게시판 class="active"
[화면]
<div class="container">
<div class="row">
<table class="table table-striped" style="text-align; center; border: 1px solid #dddddd">
<thead>
<tr>
<th style="background-color: #eeeeee; text-aligh: center;">번호</th>
<th style="background-color: #eeeeee; text-aligh: center;">제목</th>
<th style="background-color: #eeeeee; text-aligh: center;">작성자</th>
<th style="background-color: #eeeeee; text-aligh: center;">작성일</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>안녕하세요.</td>
<td>홍길동</td>
<td>2023-12-08</td>
</tr>
</tbody>
</table>
<a href="write.jsp" class="btn btn-primary pull-right">글쓰기</a>
</div>
</div>
'강의 > JSP 게시판 만들기' 카테고리의 다른 글
[JSP 게시판 만들기] 10. 글쓰기 기능 구현하기 (1) | 2023.12.08 |
---|---|
[JSP 게시판 만들기] 9. 게시판 데이터베이스 구축하기 (1) | 2023.12.08 |
[JSP 게시판 만들기] 7. 접속한 회원 세션 관리하기 (1) | 2023.12.08 |
[JSP 게시판 만들기] 6. 회원가입 기능 구현하기 (1) | 2023.12.08 |
[JSP 게시판 만들기] 5. 회원가입 페이지 디자인 (1) | 2023.12.08 |