-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
39 lines (29 loc) · 1.41 KB
/
example.html
File metadata and controls
39 lines (29 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>AngularJs - Implementation Example</title>
<link rel="icon" href="img/favicon.png" type="image/x-icon" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="css/exampleStyle.css">
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="allContent col-md-6 col-md-offset-3">
<h1 ng-bind="title">Not Working</h1>
<h2>
<input class="form-control" type="text" ng-model="name" />
</h2>
<h2>Hello <span ng-bind="name"></span></h2>
</div>
<div class="credits">VIEW <a href="exampleCode.html">CODE</a> FIRST</div>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="js/AngularJsImplementation.js"></script>
</body>
</html>