• This project
    • Loading...
  • Sign in

홍길동 / onos

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • onos
  • ..
  • ng-examples
  • ch02-01-module-example.html
  • Simon Hunt's avatar
    Sample HTML using angular directives. · 335b2476 ...
    335b2476
    Change-Id: I94d7d9fadf9086003646446fedd61a318b689dcb
    Simon Hunt authored 2014-12-09 18:10:19 +0000
ch02-01-module-example.html 292 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<!DOCTYPE html>
<html ng-app="notesApp">
<head>
    <title>Hello AngularJS</title>

    <script src="../../tp/angular.js"></script>
</head>
<body>
    Hello {{1 + 1}}nd time AngularJS

    <script type="text/javascript">
        angular.module('notesApp', []);
    </script>

</body>
</html>