-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (29 loc) · 1.24 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
<!doctype html>
<html ng-app="beyonceApp">
<head lang="en">
<meta charset="UTF-8">
<title>Heart the Beyonce Gif</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" integrity="sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous">
<link rel="stylesheet" href="style/style.css">
</head>
<body id="bae" ng-controller="MainController">
<header class="row">
<h1>{{ title }}</h1>
<p>{{ about }}</p>
</header>
<div class="gif-container row">
<img class="gif" ng-src="http://media.giphy.com/media/{{ data.id }}/giphy.gif"/>
</div>
<div class="row">
<button class="bae" ng-click="bae()">
<h2>What a Bae(yonce)!</h2>
</button>
</div>
<footer class="row">
<p><a href="https://github.com/danagilliann/beyonce-gif-rater">About</a> | Made with <span class="fa fa-heart-o"></span> by <a href="http://danagilliann.me">Dana</a></p>
</footer>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular.min.js"></script>
<script src="js/app.js"></script>
</html>