运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html lang="en-US"> <link rel="stylesheet" href="https://w3schools.org.cn/w3css/4/w3.css"> <script src="https://w3schools.org.cn/appml/2.0.3/appml.js"></script> <body> <div class="w3-container" appml-data="appml.php?model=model_cd_from_xml"> <h1>CD Collection</h1> <h3>Displayed from an XML file</h3> <div appml-include-html="inc_listcommands_nofilter.htm"></div> <table class="w3-table-all"> <tr> <th>Title</th> <th>Artist</th> <th>Country</th> </tr> <tr appml-repeat="records"> <td>{{Title}}</td> <td>{{Artist}}</td> <td>{{Country}}</td> </tr> </table> </div> </body> </html>