Angular: Empty Fiddle with bootstrap 3
http://angularjs.org/
by anup1986
HTML
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<div class="container" ng-controller="MyCtrl">
<div class="row">
<div class="col-md-12">
Hello, {{name}}!
</div>
</div>
</div>
CSS
body {
margin-top: 50px;
}
JavaScript
var myApp = angular.module('myApp', []);
//myApp.directive('myDirective', function() {});
//myApp.factory('myService', function() {});
function MyCtrl($scope) {
$scope.name = 'Superhero';
}