Skip to content

Instantly share code, notes, and snippets.

@sithumc
Created March 13, 2017 06:07
Show Gist options
  • Save sithumc/7a4653b4664043bc00fca348e25fe0d5 to your computer and use it in GitHub Desktop.
Save sithumc/7a4653b4664043bc00fca348e25fe0d5 to your computer and use it in GitHub Desktop.

Revisions

  1. Sithum created this gist Mar 13, 2017.
    12 changes: 12 additions & 0 deletions angular.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,12 @@
    <!DOCTYPE html>
    <html lang="en-US">
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
    <body>

    <div ng-app="">
    <p>Name : <input type="text" ng-model="name"></p>
    <h1>Hello {{name}}</h1>
    </div>

    </body>
    </html>