-
[Project] BBS시스템 테스트코딩카테고리 없음 2022. 11. 9. 21:28
테스트 코딩
<!--
게시판 메인 페이지 영역
-->
<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-align:center;">번호</th>
<th style="background-color:#eeeeee; text-align:center;">제목</th>
<th style="background-color:#eeeeee; text-align:center;">작성자</th>
<th style="background-color:#eeeeee; text-align:center;">작성일</th>
</tr>
</thead>
<tbody>
<!-- 테스트코드 -->
<tr>
<td>1</td>
<td>안녕하세요</td>
<td>작성자이름</td>
<td>2022-11-09</td>
</tr>
</tbody>
</table>
<!-- 글쓰기 버튼 -->
<a href="write.jsp" class="btn btn-primary pull-right"></a>
</div>이 화면을 기반으로 게시판 기능을 구현합니다.