I am watching a video to learn angularjs. I used CDN link for including angularJs
<html>
    <head>
        <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"/>
    </head>
    <body ng-init="names=['shan', 'amit', 'vaibhav']">
        <ul>
            <li ng-repeat="pname in names">
            {{pname}}
            </li>
        </ul>
    </body>
</html>
I have no other file. That's the simplest piece of code I have and on browser I see blank page. What's wrong in this?
 
     
     
     
     
    