-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
46 lines (32 loc) · 1.5 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Giphy Experiment</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Zilla+Slab" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body ng-app="giphyExp">
<div class="home__display">
<div class="container">
<div class="row">
<div class="title">
<h1>Giphy API Integration</h1>
</div>
</div>
<div class="row home__content">
<div>
<h3 class="menu"><button type="button" class="btn btn-lg btn-info"><a href="#/trending">Trending</a></button> | <button type="button" class="btn btn-lg btn-info"><a href="#/search">Search</a></button></h3>
</div>
</div>
<div ng-view>Loading...</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-route.min.js"></script>
<script src="js/script.js"></script>
<script src="js/services.js"></script>
</body>
</html>