DEV/html

task5_테이블

purple 2020. 1. 10. 18:24

<!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>