-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
26 lines (24 loc) · 1010 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Angular Upgrade Demo</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css" type="text/css" />
<link rel="stylesheet" href="styles.css" type="text/css" />
</head>
<body class="container">
<nav>
<ul class="list-inline inline separated">
<li><a href="index.html" class="title">Angular Upgrade Demo</a></li>
<li><a href="ng1.html" class="ng1">ng1</a></li>
<li><a href="ng2.html" class="ng2">ng2</a></li>
<li><a href="ng1ng2.html"><i class="ng1"><i class="ng2">ng1 & ng2</i></i></a></li>
</ul>
</nav>
<div class="jumbotron text-center push-down-md">
<h1>Angular Upgrade Demo</h1>
<p class="h3">Demonstrating how to migrate <span class="ng1-text">Angular 1</span> apps to <span class="ng2-text">Angular 2</span>.</p>
</div>
</body>
</html>