본문 바로가기

DEV/html

task5_테이블

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<table border="5" width="50%" bgcolor="#cccc00" cellpadding="10" rules="rows">
<caption>가격표</caption>
<tr>
    <th>크기</th><th>내용량</th><th>가격</th>
</tr>
<tr>
    <th>보통</th><td>500g</td><td>4,800원</td>
</tr>
<tr>
    <th>대</th><td>800g</td><td>7,200원</td>
</tr>
<tr>
    <th>특대</th>
    <td><font color="#ff0000">1,200g</font></td>
    <td><font color="#ff0000">10,000원</font></td>
</tr>
</table>
</body>
</html>

 

'DEV > html' 카테고리의 다른 글

html 태그 참고 링크 및 공부법  (0) 2021.12.21
JS Bin 을 활용한 프론트엔드 동작  (0) 2021.12.21
task3_단락 구성_link, image  (0) 2020.01.10
task2_image center  (0) 2020.01.10
task1_ui구성_특정 폰트 색 지정  (0) 2020.01.10