Advertisement
txe

angularJS-lesson0

txe
Jun 23rd, 2017
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.31 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Simple app</title>
  5. <script
  6. src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.16/angular.js">
  7. </script></head>
  8. <body>
  9. <div ng-app>
  10. <input ng-model= "person.name" type= "text" placeholder= "Your name"/>
  11. <h1>Hello, {{person.name}}</h1>
  12. </div>
  13. </body>
  14. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement