Skip to content

Commit 55605c1

Browse files
facebook page added
1 parent cc8ab10 commit 55605c1

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/.idea
1+
.idea/*

phone-list-01/404.html

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>AngularJS 1</title>
6+
7+
<!-- cdn for ootstrap Links for css -->
8+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
9+
10+
<!-- Custom Stylesheet -->
11+
<link rel="stylesheet" href="app.css" />
12+
13+
<!-- cdn for angularjs -->
14+
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.5/angular.js"></script>
15+
16+
<!-- AngularJS Custom Modules -->
17+
<script src="./app.js"></script>
18+
<script src="./phone-list/phone-list.js"></script>
19+
</head>
20+
<body ng-app="phoneListApp">
21+
22+
<div class="container">
23+
24+
<phone-list></phone-list>
25+
26+
</div>
27+
28+
</body>
29+
</html>

0 commit comments

Comments
 (0)