티스토리 뷰
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>행 그룹화</title> </head> <body> <h1>행 그룹화</h1> <table border="1" summary="중앙정보처리학원의 교육과정명, 교육비, 정원 등의 자료"> <caption>중앙정보처리학원교육과정</caption> <!-- scope로 제목을 지정해준다. --> <thead> <!-- 머리글 --> <tr> <th scope="col">교육과정</th> <th scope="col">교육비</th> <th scope="col">정원</th> </tr> </thead> <tfoot> <!-- 바닥글 --> <tr> <td>평균 교육비</td> <td colspan="2">450,000</td> </tr> </tfoot> <tbody> <!-- 내용 --> <tr> <th scope="row">JAVA</th> <td>450,000</td> <td>30명</td> </tr> <tr> <th scope="row">JSP</th> <td>400,000</td> <td>25명</td> </tr> <tr> <th scope="row">Spring & iBatis</th> <td>500,000</td> <td>20명</td> </tr> </tbody> </table> </body> </html>
'java,web study > 5주차 (7월 29일~8월 4일)' 카테고리의 다른 글
frame 태그 연습 2 (0) | 2013.07.29 |
---|---|
frame 태그 연습 (0) | 2013.07.29 |
하이퍼링크 (daum.net) (0) | 2013.07.29 |
테이블 병합 (0) | 2013.07.29 |
테이블 태그 사용 (0) | 2013.07.29 |
댓글