<html lang="ru">
<head>
<title>Клиенты</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<script src="https://w3schoolsrus.github.io/appml/2.0.3/appml.js"></script>
</head>
<body>
<h1>Клиенты</h1>
<div appml-data="https://w3schoolsrus.github.io/appml/customers.js">
<table>
<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>