<!DOCTYPE html>
<html>

<head>
  <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.js"></script>
</head>

<body ng-app>
  <div data-ng-init="details=[{name:'Anil Singh',city:'Noida, India'},{name:'Sunil ',city:'UP'},{name:'code-sample.com',city:'www'}]">
    <ul>
      <li data-ng-repeat="detail in details">{{detail.name}} : {{detail.city}}</li>
    </ul>
  </div>
</body>

</html>
// Code goes here

/* Styles go here */