-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (22 loc) · 888 Bytes
/
index.html
File metadata and controls
24 lines (22 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html ng-app>
<head>
<title></title>
<link rel="stylesheet" href="foundation.min.css"/>
<link rel="stylesheet" href="style.css"/>
<script src="http://code.angularjs.org/1.1.5/angular.min.js"></script>
</head>
<body ng-controller="QuoteController" data-ng-init="randomQuote()">
<div class="wrapper">
<div class="inner">
<a href="#" style="text-decoration: none;" ng-click="randomQuote()">{{quote}}</a>
</div>
</div>
<script src="controller.js" type="text/javascript"></script>
</body>
<footer>
<h5>Built with <a href="http://angularjs.org">AngularJS</a> | <a href="https://chrome.google.com/webstore/detail/alphaquotes-chrome-extens/gaghddbfclojcohafojiikebcepflpgb/">Chrome Extension</a> |
<a href="">Open Source</a> |
By <a href="http://johnnychang.com/">Johnny Chang</a></h5>
</footer>
</html>