<html>
<head>
<style>
table, td, th {
    border: 1px solid green;      //กำหนดความหนาและสีของเส้นขอบ 
}
th {
    background-color: blue;   //กำหนดสีพื้นหลังของหัวตาราง
    color: white;    //กำหนดสีตัวอักษร
}
</style>
</head>
<body>
<table>
  <tr>
    <th>รายการอาหาร</th>
    <th>ราคา(บาท)</th>
  </tr>
  <tr>
    <td>ข้าวผัด</td>
    <td>40</td>
  </tr>
  <tr>
    <td>ต้มยำ</td>
    <td>60</td>
  </tr>
  <tr>
    <td>ไข่ดาว</td>
    <td>10</td>
  </tr>
</table>
</body>
</html>