<!DOCTYPE html> <html lang = "en"> <head> <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/> <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/> </head> <body ng-app="myModule"> <nav class="navbar navbar-default"> <div class="container-fluid"> </div> </nav> <div class="col-md-6 well" ng-controller = "myController"> <hr style="border-top:1px dotted #000;"/> <div class="col-md-4"> </div> <div class="col-md-6"> </div> </div> </body> </html>
var myApp = angular.module("myModule", []) .controller("myController", function($scope){ });