-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathdemo.html
63 lines (49 loc) · 945 Bytes
/
demo.html
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!doctype html>
<html lang="en" xmlns:ng="http://angularjs.org/">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>angular intro</title>
<script src="../../angular.js/build/angular.js" ng:autobind></script>
<script src="slide.js"></script>
</head>
<body>
<slide>
<h1>AngularJS</h1>
<h2>
HTML & JavaScript
for web-apps
rather than <em>documents</em>
</h2>
</slide>
<slide>
what's wrong
with HTML?
</slide>
<slide>
<h1>slide 1</h1>
content
<b>for</b>
slide
1
</slide>
<slide>
<h1>slide 2</h1>
content for slide 2
</slide>
<slide>
<h1>slide 3</h1>
content for slide 3
</slide>
<slide>
<h1>slide 4</h1>
content
<b>for</b>
slide
4
</slide>
<slide>
<h1>slide 5</h1>
content for slide 5
</slide>
</body>
</html>