-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (21 loc) · 1019 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Welcome to Dreambox - See what everyone dreams about!</title>
<link href="css/style.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div id="container">
<div id="heading"><a href="http://vanesa.github.io/dreambox"><h1>Dream<span class="rose">Box</span></h1></a></div>
<div class="button left-button"><a href="#" id="previous-button"> < </a></div>
<div id="lightbox"></div>
<div class="button right-button"><a href="#" id="next-button"> > </a></div>
</div>
</body>
<script src="js/dreambox.js"></script>
<!-- <script src="js/instagram.js"></script> -->
<!-- Using jsonp to get latest photos from instagram api tagged with dream -->
<!-- Executes callbackFunction passing the instagram json as the first argument to bypass cross origin request security (CORS) -->
<script src="https://api.instagram.com/v1/tags/dream/media/recent?client_id=e77ecf67bd0443a4af523e63004712d5&callback=callbackFunction"></script>
</html>