Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Customers</title>
<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
<link rel="stylesheet" href="style.css">
<script src="https://www.w3schools.com/appml/2.0.3/appml.js"></script>
</head>
<body>
<h1>Customers</h1>
<div appml-data="customers.js">
  <table>
  <tr>
    <th>Customer</th>
    <th>City</th>
    <th>Country</th>
  </tr>
  <tr appml-repeat="records">
    <td>{{CustomerName}}</td>
    <td>{{City}}</td>
    <td>{{Country}}</td>
  </tr>
  </table>
</div>
</body>
</html>