-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 1.17 KB
/
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
27
28
29
30
<!DOCTYPE html>
<html ng-app="simpleApp">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8"/>
<meta name="keywords" content="angularjs-spa, routing, javascript, spa, front-end, web-app, dynamic-pages, templating, client-side, angularjs"/>
<meta name="description" content="A simple Single Page Application (SPA) built with AngularJS demonstrating client-side routing and dynamic content rendering."/>
<meta name="author" content="Tusar"/>
<title>AngularJS-SPA Exm</title>
<link rel="stylesheet" href="res/styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular-route.min.js"></script>
<script src="lib/app.js"></script>
</head>
<body>
<header>
<h1>AngularJS SPA Example</h1>
</header>
<nav>
<a href="#!/">Home</a>
<a href="#!/about">About Me</a>
</nav>
<div class="container" ng-view></div>
<footer>
<p>© 2025 AngularJS SPA Example</p>
</footer>
</body>
</html>