-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (20 loc) · 802 Bytes
/
Copy pathindex.html
File metadata and controls
23 lines (20 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html ng-app="app1">
<head>
<script data-require="angular.js@*" data-semver="4.0.0" src="https://code.angularjs.org/latest/angular.min.js"></script>
<script data-require="angular-animate@1.5.8" data-semver="1.5.8" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular-animate.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Aclonica" />
<link rel="stylesheet" href="style.css" />
<script src="scripts.js"></script>
</head>
<body ng-controller="MainCtrl">
<div ng-repeat="ele in arr" class="fade">
<ul class="card">
<li>{{ele.name}}</li>
<li>{{ele.age}}</li>
<li>{{ele.address}}</li>
<button ng-click="removelist($index)">Remove</button>
</ul>
</div>
</body>
</html>