Edit in JSFiddle

var app = angular.module('app', []);

app.controller('TestController', function ($scope) {
    $scope.data = [{
        name: 'Shidhin',
        info: 'I am from Dubai'
    }, {
        name: 'Someone',
        info: 'I am from New york'
    }];
});
<div ng-app="app">
    <table ng-controller="TestController" class="table table-striped table-bordered">
        <tr ng-repeat-start="d in data">
            <td><strong>{{d.name}}</strong></td>
        </tr>
        <tr ng-repeat-end>
            <td>{{ d.info }}</td>
        </tr>
    </table>
</div>