-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
34 lines (29 loc) · 1.3 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
<!--
<h1>jQuery Instagram User Stream Display Really Easy with a json call</h1>
uses jQuery and json to get an instagram user feed and display it on your site.
<br/>
This is a feed from my buddy at <a href="http://midwestshades.com">MidwestShades.com</a>
<br/>
Source and idea from <a href="https://forrst.com/posts/Using_the_Instagram_API-ti5">forrst</a>
<br/>
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<link rel="stylesheet" href="media/style/style.css">
</head>
<body>
<div id="bigTag">#t1sxsw</div>
<div class="grid-sizer"></div>
<div class="grid"></div>
<!-- <div id="menu">
Tag: <input type="text" class="inputField" id="tagField"> Grid Size: <input type="text" class="inputField" id="gridSizeField"> Animation Speed: <input type="text" class="inputField" id="animationSpeedField"> Full Screen Transition Frequency: <input type="text" class="inputField" id="fullScreenTransitionField"> <div id="submitButton" onclick="submitForm()"> submit </div> -->
</div>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="https://npmcdn.com/[email protected]/dist/masonry.pkgd.min.js"></script>
<script src="media/js/main.js"></script>
</body>
</html>