-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 833 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 833 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 lang="en" ng-app>
<head>
<title>TheNetNinja Angular Playlist</title>
<link href="content/css/styles.css" rel="stylesheet" type="text/css" />
<script src="app\lib\angular.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body ng-init="color='orange'">
Enter Your Name: <input type="text" ng-model="userName" placeholder="" />
<p>Hello! {{userName}}</p>
<p class="{{color}}">
Your favorite color
</p>
<div class="fa-3x">
<i class="fa fa-spinner fa-spin"></i>
<i class="fas circle-notch fa-spinner"></i>
<i class="fas fa-sync fa-spinner"></i>
<i class="fa fa-cog fa-spin"></i>
<i class="fa fa-spinner fa-pulse"></i>
</div>
</body>
</html>