滚筒洗衣机销售排行榜 格兰士格兰仕XQG60-A708 ¥1099.00 LGLG WD-N12430D ¥2599.00 三洋三洋XQG60-F1029 ¥1998.00 三星三星WF1702NCW/XSC ¥2499.00 西门子西门子XQG60-WS10K2670W ¥3999.00 用html代码编写
时间: 2023-10-26 20:06:13 浏览: 178
Sure! Here's an example of how you can create an HTML table to display the sales ranking of top-loading washing machines:
```html
<!DOCTYPE html>
<html>
<head>
<title>Top-Loading Washing Machine Sales Ranking</title>
</head>
<body>
<h1>Top-Loading Washing Machine Sales Ranking</h1>
<table>
<tr>
<th>Brand and Model</th>
<th>Price (CNY)</th>
</tr>
<tr>
<td>格兰士格兰仕XQG60-A708</td>
<td>¥1099.00</td>
</tr>
<tr>
<td>LGLG WD-N12430D</td>
<td>¥2599.00</td>
</tr>
<tr>
<td>三洋三洋XQG60-F1029</td>
<td>¥1998.00</td>
</tr>
<tr>
<td>三星三星WF1702NCW/XSC</td>
<td>¥2499.00</td>
</tr>
<tr>
<td>西门子西门子XQG60-WS10K2670W</td>
<td>¥3999.00</td>
</tr>
</table>
</body>
</html>
```
You can save this code in an HTML file (e.g., `sales_ranking.html`) and open it in a web browser to see the table.
阅读全文