Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html lang="ru">
<title>Клиенты</title>
<link rel="stylesheet" href="../w3css/4/w3.css">
<script src="2.0.3/appml.js"></script>
<body>
<div class="w3-container" appml-data="https://www.w3schools.com/appml/appml.php?model=model_customers">
<h1>Клиенты</h1>
<table class="w3-table-all">
<tr>
  <th>Клиент</th>
  <th>Город</th>
  <th>Страна</th>
</tr>
<tr appml-repeat="records">
  <td>{{CustomerName}}</td>
  <td>{{City}}</td>
  <td>{{Country}}</td>
</tr>
</table>
</div>
</body>
</html>