You may be interested in…

<!DOCTYPE html>
<html lang=”vi”>
<head>
  <meta charset=”UTF-8″ />
  <meta name=”viewport” content=”width=device-width, initial-scale=1.0″/>
  <title>Giỏ hàng</title>
  <link rel=”stylesheet” href=”style.css”/>
</head>
<body>
  <h1> Giỏ hàng của bạn</h1>
  <div id=”cart-container”>
    <table id=”cart-table”>
      <thead>
        <tr>
          <th>Sản phẩm</th>
          <th>Giá</th>
          <th>Số lượng</th>
          <th>Tổng</th>
          <th>Hành động</th>
        </tr>
      </thead>
      <tbody id=”cart-items”>
       
      </tbody>
    </table>
    <div class=”cart-summary”>
      <strong>Tổng cộng: <span id=”cart-total”>0₫</span></strong>
    </div>
    <button onclick=”checkout()”>Thanh toán</button>
  </div>
 
  <script src=”cart.js”></script>
</body>
</html>